Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
try this
var bool IssueDateWasLastMonth =
IF(FirstDayOfMonth([Issue Date]) = FirstDayOfMonthAdjustMonth(Today(),-1),true);
// the above will be true if the 1st of the month of the issue date is the same date as the first of the month of the month previous to today.
IF(
Upper([Line]) <> "LIFE","",
$Red,"Red",
$Yellow,"Yellow",
$Green, "Green")
var bool IssueDateWasLastMonth =
IF(FirstDayOfMonth([Issue Date]) = FirstDayOfMonthAdjustMonth(Today(),-1),true);
// the above will be true if the 1st of the month of the issue date is the same date as the first of the month of the month previous to today.
IF(
Upper([Line]) <> "LIFE","",
$Red,"Red",
$Yellow,"Yellow",
$Green, "Green")