Power Query - compare date versus today as boolean
I have a column that contains dates. Is there any function to get TRUE/ FALSE if the date is before TODAY()?
Solution 1:
add column .. custom column ..
= [yourdatecolumnname] < DateTime.Date(DateTime.LocalNow())