I am asking the user to input the date of their session using the prebuilt date entity and saving as a variable called Topic.session_date
I am then trying to create a metho din which I can check if session date is within 2 days of today's date.
I have tried creating a new variable called within_48 and used the following formula to output a true or false value but it failed:
Formula: =IF((TODAY() - Topic.session_date) <= 2, TRUE, FALSE)
I also tried using a condition of if Topic.session_date is Today() AND Today() - 1 AND Today() -2
but neither has worked.