Hi all,
I have the following business case for my field "SMO" (this field is set up as a choice in sharepoint list)
1. on ITEMS I put below formula so that PowerApps knows the active user is me & does a lookup in my reference list which "SMO" drop downs can be visible:
Distinct(Filter('Accesibility reference list' ,Or(Title= varUser, SMO = Blank())),SMO)
2. on On select I put below, so that I create a collection called findSMOref that I will use for later "conditional" drop downs:
ClearCollect(findSMOref, {Result:"-"}); Collect(findSMOref, Filter('SMO Cluster Country Brand Family 3 reference', TDSMO = DataCardValue11_2.Selected.Result));
In my Powerapp test environment all is working, I only see the "SMO" fields that I want (2 our of 10). Also my other conditional field are working.
However when I save and check it back in my Sharepoint list, it did not save SMO field.
My Key User in PowerApps also doesn't know how this happened.
Does anyone know or know a workaround?