Hi All,
I want to get the list items between two date and export those items into excel. It is working fine when I do not use filter condition. But when I use filter then data source is going as null in Power Automation flow.
Here is the code:
ClearCollect(colSPListItems,ShowColumns(Filter(ListName,
startDate.SelectedDate >= Created And endDate.SelectedDate <= Created),"Title","FirstName","LastName","Status"),
Set(varFileLink,ExportToExcel.Run(JSON(colSPListItems,JSONFormat.IgnoreBinaryData &JSONFormat.IgnoreUnsupportedTypes
)).filelink);Launch(varFileLink));

Thanks,
SKY