I am trying to add some custom columns using Power Bi
= Table.AddColumn(#"Filtered Rows", "IsCurrentMonth", if(Date.Month([Timestamp])=Date.Month(NOW())) then "Current Month" else "Other")
but getting an error message
Expression.Error: The name 'NOW' wasn't recognized. Make sure it's spelled correctly.
How can I get current month?