Hi All,
We have few dropdowns they are dependents(Cascading dropdowns).
We have a other screen which captures the user preferences and storing in sharepoint list. I want to display these sharepoint user preferences as default values for the dropdowns(Cascading dropdowns).
Tried with the below different types of code with necessary changes for all dropdowns default property.
If(CountRows(Filter(colUserPrefer,MailID=User().Email).Location)>=1,
LookUp(LocCollection, Result=First(colUserPrefer).Location, Result))
If(CountRows(Filter(colUserPrefer,MailID=User().Email).Location)>=1,
LookUp(colUserPrefer,MailID=User().Email).Location,"BCD");
Above code not working for all dropdowns.
Note: Default values should be populate once we logged in to the app(First Time).
Can someone guide me how to implement this one.