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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
loay_younis
New Member

Hello all, iam new here and i need help please.

Hello all, iam new here and i need help please in some DAX tranlation in order to translate the below  IF statement:

 

=IF(I735="Change",O735-N735,"00:00:00")

=IF(NOT(I735="Change"),O735-N735,"00:00:00")

 

Thans in advence 

1 REPLY 1
Anonymous
Not applicable

@loay_younis  Below is how I read them.

=IF(I735="Change",O735-N735,"00:00:00")
If the row value in column I735 is "Change", then return O735 - N735 (I'm not sure how or if that will work), else return the text value of "00:00:00."

=IF(NOT(I735="Change"),O735-N735,"00:00:00")
If the row value in column I735 is not "Change", then do something with O735 - N735, else return the text value of "00:00:00."


Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.