Forum Discussion
Anonymous
3 years agoNot applicable
Create a new column on if statement(Very basic support needed)
Hi im trying the most simple query. Any help? if ([Actual End Date] < [Target End Date])
then 1
else 0 If date1 is less then date2 then put 1 in the column otherwise put 0...
- 3 years ago
if ([Actual End Date] ?? #date(1,1,1)) < ([Target End Date] ?? #date(1,1,1)) then 1 else 0
CNENFRNL
3 years agoCommunity Champion
if ([Actual End Date] ?? #date(1,1,1)) < ([Target End Date] ?? #date(1,1,1)) then 1 else 0Anonymous
3 years agoNot applicable
Ahh never thought to use the ?? In an if comparison--very cool.
--Nate