I need to filter date data being imported from excel using the "Filter Query" see below:
the 1st circled is the query, I need to filter data that is 18 month and newer from todays date;
'Assigned Date' eq dateDifference(utcNow(),18)
the 2nd circled is that the 'DateTime Format' has to be Serial Format as I have too many working flows where I'm having to convert using the following formula:
if(empty('Assigned Date'),
null,
addSeconds('1899-12-30',int(formatNumber(mul(float('Initial Assigned Date'),86400),'0','en-us')),'MM-dd-yyyy')
)