Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
RÉSOLU

Data type operations

vvissamsetty
Astéroïde

I have 2 columns with dates. I'm trying to create a check function where if Column A < (Column B - 90 days) then its 'True' else 'False'. It would be great if anyone can help me with this.

2 RÉPONSES 2
Thableaus
17 - Castor
17 - Castor

Hi @vvissamsetty 

 

Try this - using Formula Tool:

IF Column A < DateTimeAdd(Column B, -90, "days") THEN "True" ELSE "False" ENDIF

 

Cheers,

vvissamsetty
Astéroïde

That worked. Thanks @Thableaus 

Étiquettes