Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Alteryx replace null value to date

Samals
6 - Meteoroid

When iam using this formula : 

 IF IsEmpty([FIRST APPEARED ON])

THEN [FIRST APPEARED ON]=DateTimeToday()
ELSE [FIRST APPEARED ON]
ENDIF

 

Null /Empty value is replaced with 1899-12-30 and not today's date..

2 REPLIES 2
BenMoss
ACE Emeritus
ACE Emeritus
Your formula is set up incorrectly it shpuld read...

If isempty([field])
Then datetimetoday()
Else [field]
End if

Ben
Samals
6 - Meteoroid

Works Perfectly! Thank you 

Labels