Hiya,
I'm trying to build a scheduled flow whereby an automated email is sent if a null value is recorded after 3 days of a date value in a separate column.
I.e. Item added to SP List, 27/08/21 [Column A] - Scheduled flow checks date input in [Column B] 29th/30/31st
On the 31st, no date value is in [Column B], the flow runs and an email is sent to confirm that [Column A] hasn't been actioned.
How can I build this? The columns are not going to be 'empty' to start with and will always be updated/contain data, I have been trying to use the 'String' formula:
@And(less(item()?['@{items('Apply_to_each')?['ColumnA']}'], addDays(utcnow(), -3)),not(equals(coalesce(item()?['@{items('Apply_to_each')?['ColumnB']}'],'null'),'null'))
So far no luck and error of:
The 'from' property value in the 'query' action inputs is of type 'String'. The value must be an array.
Any help much appreciated!
Thank you 😁