Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

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
Top Solution Authors