Hi All,
I have a collectionA which is having Name and ID columns. I'm populating a combobox with Names by using(collectionA) and it was enabled for selecting multiple items.
Here i have to collect the data forall the Names with corresponding ID.
ClearCollect(MyCalendarNames,combobox.SelectedItems.DisplayName);
ForAll(collectionA.Name,
ClearCollect(collectionX ,Filter(Office365Outlook.GetEventsCalendarViewV2(
LookUp(collectionY,DisplayName in MyCalendarNames.Name).ID,
Text(DateAdd(dpkFrom.SelectedDate,-1,Hours),UTC),
Text(DateAdd(dpkTo.SelectedDate,1,Days),UTC)).value));
Can someone help me on this.