Posts

Showing posts from July, 2022

Filter Query on GetItems based on a date value in Power automate

Create Intialize variable for Future date Value:    addDays(utcNow(),1,'yyyy-MM-dd') Add Get items actions Filter Query :     Modified gt 'formatDateTime(utcNow(),'yyyy-MM-dd')' and Modified lt 'FutureDate' Note: Single quotes around the expression and the reference to the variable.