Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Use multiple fields formula to validate the input value is not the future date

yychim
6 - Meteoroid

I tried to use multiple fields formula to validate the input value is not the future date

 

However, there is sth wrong in the formula. Can u please have a look or suggest another formula for me? Thanks so much.

 

 

IF ISNULL([_CurrentField_]) THEN
"valid"
ELSEIF DateTimeParse([_CurrentField_], "%Y-%m-%d") <= DateTimeToday() THEN
"invalid"
ELSE
"valid"


ENDIF

1 REPLY 1
binuacs
20 - Arcturus

@yychim I think you are trying to write the "valid" or "Invalid" string type to a DateTime type field, which is causing the error. Can you screenshot your Multi-Field configuration here? or use the formula tool for your validation

image.png

Labels