Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

New column if statement

Hi 

I have used the simple if command as below 

Late tasks = if(Tasks[TaskFinishDate] - RELATED(TaskBaselines[TaskBaselineFinishDate]) > 1 , 1 , 0)
does anyone know why is is not working correctly?
regards 
 
1 ACCEPTED SOLUTION

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
- YEAR

 

Check it here https://docs.microsoft.com/en-us/dax/datediff-function-dax 

View solution in original post

5 REPLIES 5
HotChilli
Community Champion
Community Champion

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.

Anonymous
Not applicable

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 

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
- YEAR

 

Check it here https://docs.microsoft.com/en-us/dax/datediff-function-dax 

Anonymous
Not 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 result 
can you help please ?
 
Anonymous
Not applicable

Thanks

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors