dependent drop down enum appsheet from useremail or another fixed value

Hi, me again...

I have a question that I asume it's easy to answer.

I have this form whe

re the user (nombre and Email) both are a fixed value, due it's the name of de current user (LOOKUP(USERSETTINGS(Correo Usuario),Usuarios, Correo Electronico,Nombre)

Yeyo1976_0-1714488401505.png

it's any way where the dropdown "Alumno" only shows the values of this user?

I try with Lookup and with dependet dropdow, but shows me all the "Alumnos" from the table Alumnos.

Yeyo1976_4-1714488865465.png

 

My table strcuture:

Yeyo1976_2-1714488822671.png

Yeyo1976_3-1714488831978.png

Thanks!!!

Solved Solved
0 3 59
1 ACCEPTED SOLUTION

What is the structure of your Alumnos table?

You should be able to use a slice on the Alumnos table based on the user setting and then use that slice for your suggested values. Or you could use a SELECT expression in your suggested values like SELECT(Alumnos[Alumnos Nombre],[Email]=[_thisRow].[Email])

Exactly what you need depends on what columns you have in the Alumnos table to reference

View solution in original post

3 REPLIES 3

What is the structure of your Alumnos table?

You should be able to use a slice on the Alumnos table based on the user setting and then use that slice for your suggested values. Or you could use a SELECT expression in your suggested values like SELECT(Alumnos[Alumnos Nombre],[Email]=[_thisRow].[Email])

Exactly what you need depends on what columns you have in the Alumnos table to reference

Hi, 


@lynchk21 wrote:

What is the structure of your Alumnos table?


Yeyo1976_2-1714496626504.png


@lynchk21 wrote:

Or you could use a SELECT expression in your suggested values like SELECT(Alumnos[Alumnos Nombre],[Email]=[_thisRow].[Email])


It doesn't work...

Yeyo1976_3-1714496695301.png

Yeyo1976_4-1714496703656.png

But the slice option works great!

Thanks!

 

Great!

Seeing your table, you could try this expression in SELECT if you want, but they slice seems like a better options anyway

SELECT(Alumnos[Nombre Alumno],[Email Alumno]=[_thisRow].[Email])

 

Top Labels in this Space