Hi
I have a column in an SP list that is set to text, but holds date values, and I need to filter that column to get any items from the last week, however it is returning all sorts of items instead. Are there anyways to do this as my current option doesnt seem to work. Below is my current Filters:
I am setting a variable to get the date 1 week ago:
addDays(utcNow(),-7,'yyyy-MM-dd')

I then filter on the GetItems:
PageStatus eq 'Fully Approved' and FinanceApproverApprovedDate ge@{variables('var_DateFilter')} ' and field_1 eq 'TEST'
