Hi,
Where in PowerApps we can build collections to then use values from there within the app, how can we build collections in Power Automate and how do we call upon the values?
e.g. I have this collection in an app. I want to convert this to Power Automate.
ForAll(
Sequence(30,1),
Collect(
colDateRange,
{
RowIndex: CountRows(colDateRange) + 1,
Date: DateAdd(Today(), Value)
}
)
);
//Remove Weekends from the calculated collection
RemoveIf(
colDateRange,
Weekday(Date) = 1 || Weekday(Date) = 7
) > 0
);