Forum Discussion
Anonymous
3 years agoNot applicable
convert true / false to date
I want to write this dax query to return date column, does any one know how i can convert it to a date column?
DigFilter = 'worker'[date]
<= TODAY() + 30
2 Replies
- FreemanZSuper User
hi Anonymous
try to add a calculated column like:
column = IF( [date]<=TODAY(), [date]+30, [date] )- AnonymousNot applicable
i tried this but my columns shows date going all the way back to 1900? as shown on this screenshot, any suggestions on what the issue is