Forum Discussion
New column if statement
- 6 years ago
It would be similar to
DATEDIFF(<start_date>, <end_date>, <interval>)The interval is the units so it would be one of these
- SECOND
- MINUTE
- HOUR
- DAY
- WEEK
- MONTH
- QUARTER
- YEARCheck it here https://docs.microsoft.com/en-us/dax/datediff-function-dax
You will need the Dax DATEDIFF function. I think you need to pass DAY as the third parameter.
I have just noticed that this question is in the Power Query forum but you wrote some DAX. That's OK but make sure you create the column in the right place.
thanks
I am very new in Power bi,
could you please tell me an example?
I couldn't understnd what the third argumnet is
thanks
- HotChilli6 years agoCommunity Champion
It would be similar to
DATEDIFF(<start_date>, <end_date>, <interval>)The interval is the units so it would be one of these
- SECOND
- MINUTE
- HOUR
- DAY
- WEEK
- MONTH
- QUARTER
- YEARCheck it here https://docs.microsoft.com/en-us/dax/datediff-function-dax
- Anonymous6 years agoNot applicable
Thanks
- Anonymous6 years agoNot applicable
I still have issue with the below formula
Late tasks = IF((DATEDIFF(Tasks[TaskActualFinishDate],RELATED(TaskBaselines[TaskBaselineFinishDate]),DAY))<0,"Late"," ")is that wrong as I am getting wrong resultcan you help please ?