Forum Discussion
olimilo
2 years agoPost Prodigy
DATEDIFF calculated column returning incorrect value
I have a DATEDIFF calculated column that's returning incorrect values for all rows whose Review Due is past the current date:
Days Due =
SWITCH(
TRUE(),
'Data'[Review Date] = BLANK(), BLANK(),
'Data'[Review Due] <= TODAY(), 0,
DATEDIFF('Data'[Review Date], 'Data'[Review Due], DAY)
)
E: My bad, it was computing properly 😂