Hello!
I'm currenty using a combo box which has a choices() value in it, the thing is that I would like to filter the value it shows based on conditions. For example:
Currently my items selection is
Choices('Ajuste sueldo'.Proyecto)
But I want to filter this value, Proyecto is a lookup column from another list which on it it has a People column. I want on this combo box to appear only the Projects that the person using the app has, I thought using a lookup inside a choices column, but i cant manage to resolve it, something like this:
Choices(
LookUp(
'Ajuste sueldo';
varUser in Proyectos[@'Delivery Manager']
).Proyecto
)
But it throws me an error saying I cant use Metadata values (referring to Proyectos[@...]
Anyone could give me a hand?
Thanks!