Forum Discussion

vonw13's avatar
vonw13
Frequent Visitor
4 years ago
Solved

Isafter THISMONTH

In my calendar table I have an "IsAfterToday" column that returns true and false correctly, but I would also like to do one for "IsAfterThisMonth" to return anything prior to this monthyear (ie. Mar2...
  • amitchandak's avatar
    4 years ago

    vonw13 , A new column like

    IsAfterThisMonth = if([Date] > eomonth(Today() ,1) , true(), false() )