Hi,
How can I better optimize my flow?13 hours is way to long...
First part -
1. Reoccurrence.
2. Initialize variable of location of an excel on my onedrive
3. Get table from this excel.

4. Compose columns from this table in my excel file.

Compose Statement -
items('Apply_to_each')?[concat('Start of Period ', '/', ' Date')]
2nd compose -
if(
empty(outputs('Compose')),
null,
addDays('1899-12-30', int(outputs('Compose')), 'yyyy-MM-dd')
)
This is repeated several times for 6 or 7 date columns. Ie compose 3 and 4 will be for another date column, and so on.
5. Create items in list -

my excel table has about 50 columns and 2000 rows.
any help on making this faster would be appreciated.