this seems like it should be simple, but I cant seem to get it to work.
I want to filter a Sharepoint 'Created' date column to only show items created > beginning of the current year.
I've also tried the following;
DateTimeValue(Value("01/01/2022"))
DateTimeValue(Text("01/01/2022")))
all with DateValue, and DateTimeValue.
can anyone help?
Solved! Go to Solution.
You need to use this:
DateValue("01/01/2022")
I hope this is helpful for you.
You need to use this:
DateValue("01/01/2022")
I hope this is helpful for you.