I've seen many solutions that almost get there but don't close the loops. I've spent way to much time trying to figure this out.
I need to connect to an Excel online file, find rows that have a date in the next 6 days and then send an email to a recipient listed in the excel file.
It should be pretty easy but i'm struggling.
Hoping someone can point me in the right direction?
Thanks in advance!
Solved! Go to Solution.
Hi @forms-flows ,
The premise of using Excel online related actions is that the table has been defined in Excel file.
If this condition is met and is the same as you described, there is a date field and a recipient field. You could refer to the following method to configure Flow.
I have had test on my side, create a new Excel table containing two fields, Date and Recipient.
Expression reference:
@and(lessOrEquals(formatDateTime(item()['Date'], 'yyyy-MM-dd'), addDays(utcNow(), 6, 'yyyy-MM-dd')),greaterOrEquals(formatDateTime(item()['Date'], 'yyyy-MM-dd'), utcNow('yyyy-MM-dd')))
Image reference:
Please take a try.
Best Regards,
As a side note, it also seems like most solutions were developed prior to Microsoft making some changes to some of the scripting tools?
Hi @forms-flows ,
The premise of using Excel online related actions is that the table has been defined in Excel file.
If this condition is met and is the same as you described, there is a date field and a recipient field. You could refer to the following method to configure Flow.
I have had test on my side, create a new Excel table containing two fields, Date and Recipient.
Expression reference:
@and(lessOrEquals(formatDateTime(item()['Date'], 'yyyy-MM-dd'), addDays(utcNow(), 6, 'yyyy-MM-dd')),greaterOrEquals(formatDateTime(item()['Date'], 'yyyy-MM-dd'), utcNow('yyyy-MM-dd')))
Image reference:
Please take a try.
Best Regards,
User | Count |
---|---|
84 | |
81 | |
48 | |
30 | |
23 |
User | Count |
---|---|
28 | |
28 | |
27 | |
21 | |
20 |