Hi All,
I have multiple Names and Id's in CollectionA.
And Names(multiple) are selecting by using combobox. Based in the selected Names I have to select the ID's.
I used below code which is not working as expected.
ForAll(collectionA.Name,
Collect(collectionX ,Filter(Office365Outlook.GetEventsCalendarViewV2(
LookUp(collectionY,Name in collectionB.Name).ID, // Here im using LookUp and returns same ID eachtime.
Text(DateAdd(dpkFrom.SelectedDate,-1,Hours),UTC),
Text(DateAdd(dpkTo.SelectedDate,1,Days),UTC)).value));
Can someone help me on this.