Right now I have cobbled together the following solution that is working fine.
I have the following UpdateIf in the OnChange property of a dropdown (DrpPrdTyp😞
UpdateIf(CollPtAPrd,Type=LblProdTypeLookup.Text,{GrpPrd:Value(1)},Type=LblProdTypeLookup.Text,{GrpPrd:Value("")})which references (via LblProdTypeLookup.Text) the following LookUp formula (within the Text property of a Label):
LookUp(Type,DrpPrdTyp.Selected.Value=GenType).TypeType
I was hoping I could simply replace each instance of LblProdTypeLookup.Text in the DropDown formula with the entire LookUp formula above. When I try I get an "Invalid argument type" error. As a result I am having to hide the Label so I can reference it in order to make the UpdateIf work. Very clunky solution. What am I missing?