hi folks,
i got following problem with this few line of code:
//This is working
ClearCollect(dDBrancheData,{Result:"All"});
Collect(dDBrancheData,Distinct(Application,Branche));
//This is working this collection stays empty
ClearCollect(dDSegmentData,{Result:"-"});
Collect(dDSegmentData,[Filter(Application, Branche = dDBranche.Selected.Result),Segment)];
but if im using the filter code on item (dropdown) itself it will work.
Filter(Application, Branche = dDBranche.Selected.Result),Segment)
but why its not working in the collection code ?
mybe some on has a clue 🙂