Question on the following formula. I have tried just about anything and everything to get this formula field to only calculate the score based on after the date. The formula works perfectly fine without using any date fields.
Form type (single choice option), LH_GC_Def_1 (checkbox) field.
Current working formula for field GC#
IF({Form Type}="QCLH",
IF(LH_GC_Def_1=1,
0,
3))+
IF({Form Type}="VOICE",
IF(LH_GC_Def_1=1,
0,
2))+
IF({Form Type}="QCLH",
IF(LH_GC_Def_2=1,
0,
3))+
IF({Form Type}="VOICE",
IF(LH_GC_Def_2=1,
0,
2))
If I try to add in the date field to the GC# column (date of session field) using an operator, it looks like some portions are scored correctly and some are completely wrong, like it is only counting a portion.
I have also tried to use IS_AFTER but the formula fails to work, or pulls up an ERROR!.
Any thoughts?