Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

Issues with writing a boolean formula in In-Db formula tool

Navigator
6 - Meteoroid

Hi

I'm struggling with this in-db formula DATEDIFF(day,"MAX_SETTDATE",GETDATE()) < 5 which should result in either true or false.

 

I get the following error " incorrect syntax near '<' ", does anyone know the solution?

 

thanks

Anton

1 REPLY 1
LindaT
Alteryx
Alteryx

Hi Anton,

You would need to use a CASE statement to get that formula into column.

 CASE WHEN DATEDIFF(day,"MAX_SETTDATE",GETDATE()) < 5 THEN 1 ELSE 0 END

Thanks

Linda

Labels
Top Solution Authors