Hi all,
I'm having real trouble here. I have a SP column called FDate that is a string. It needs to be a string for it's use in PowerApps. I'm trying to build a GetItems Filter Query that compares whether or not it is in the future. A really minor thing, but I can't get it to work. For example, my date might be 23/11/2023. Comparing to utcNow throws up the error it is in the wrong format.
I've tried to following commands for converting it:
parseDateTime('FDate','en-US','yyyy/MM/dd')
formatDateTime('FDate, 'yyyy/MM/dd')
concat(split('FDate','/')[2],'-',split('FDate','/')[0],'-',split('FDate','/')[1]) --- (this gives me an error about the [2] being outside array?)
Nothing works. I've also tried to above on the utcNow portion to see if I can convert that to be the same. Nothing.
Any ideas?