UchennaOgbejesi
5 years agoQrew Trainee
Using Variables in Formulas
Hello all,
I'm trying to create a formula checkbox to check off between two hardcoded dates/times each month.
My current formula looks like this:
var DateTime FebPRStart = DateTime(02-01-2020 12:00 AM);
var DateTime FebPREnd = DateTime(02-15-2020 11:59 PM);
var Bool FebCalc = Today()>=$FebPRStart and Today()<=$FebPREnd;
Case
(Month(Today()) = 2,$FebCalc,true,false,
My problem is with the orange highlighted text. I was able to use the date variable when I started, but it seems like I cannot use the datetime the way I'm approaching it.
Does anyone have any ideas on how to include time in my variables and streamlining my formula in case I'm overcomplicating it.
Thanks for any help you can provide.
- Without testing it I believe this one should work. It was missing some parenthesis in a few spots. A misspelled word and also using Today at the end instead of Now. This might work, if not post back.
This is just what Mark posted with those things adjusted.
var DateTime FebPRStart = ToTimeStamp(ToDate("02-01-2020"), ToTimeOfDay("12:00 AM"));
var DateTime FebPREnd = ToTimeStamp(ToDate("02-15-2020"), ToTimeOfDay("11:59 PM"));
var Bool FebCalc = Now() >= $FebPRStart and Now() <= $FebPREnd;