Jun 19, 2022 09:47 PM
Ok this seems pretty simple, but I just can’t get my head around it. I am new to formulas, so get the basics, but want to move beyond.
Fields are - Member, Age, Clearance, Expiry, Valid, Current Member, Needs attention.
Basically, if the Valid field is ‘not valid’ and the current member is ‘yes’ then the needs attention should be ‘yes’
However, if the member is not yet 18 then clearance etc is not required.
So far I have
IF( Age<18,“Not Required”,
IF(AND(Age>17, Clearance,Expiry), “Valid”, “Not Valid”))
But I would like it to only be valid if the Expiry is after ‘today’.
I really don’t know if I am explaining it well.
I have created an example table here to help explain.
Solved! Go to Solution.
Jun 20, 2022 12:00 AM
Hi Kel, try this out:
IF(
Age<18,
"Not Required",
IF(
AND(
Age>17,
Clearance,
IS_AFTER({Expiry}, TODAY())
),
"Valid",
"Not Valid"
)
)
Jun 20, 2022 12:00 AM
Hi Kel, try this out:
IF(
Age<18,
"Not Required",
IF(
AND(
Age>17,
Clearance,
IS_AFTER({Expiry}, TODAY())
),
"Valid",
"Not Valid"
)
)
Jun 20, 2022 12:26 AM
THANK YOU! Again, your help is awesome.
I had come so close but looks like I was putting things in the wrong order.
That did the trick. Thank you so much.