cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
AayWhy
Frequent Visitor

DAX

Hi,

 

I need help with my DAX. I need to convert whole number to time with length (LEN)/digits ranging from 1 to 4. I wrote this but it's not working:

 

IF(LEN(flights[#"SCHEDULED_DEPARTURE - Copy"])=4,
LEFT(flights[#"SCHEDULED_DEPARTURE - Copy"],2)&":"&RIGHT(flights[#"SCHEDULED_DEPARTURE - Copy"],2),

IF(LEN(flights[#"SCHEDULED_DEPARTURE - Copy"])=3,
LEFT(flights[#"SCHEDULED_DEPARTURE - Copy"],1)&"0:"&RIGHT(flights[#"SCHEDULED_DEPARTURE - Copy"],2),

IF(LEN(flights[#"SCHEDULED_DEPARTURE - Copy"])=2,"00:"&RIGHT(flights[#"SCHEDULED_DEPARTURE - Copy"],2),

"00:0"&RIGHT(flights[#"SCHEDULED_DEPARTURE - Copy"],1)))))

 

I get this in return: "Expression.Error: The name 'IF' wasn't recognized. Make sure it's spelled correctly."

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @AayWhy ,

 

Your code looks good to me. I created a calculated column in DAX with it and got the following result:

tomfox_0-1654024108869.png

 

The only thing I noticed is that you had one parentheses too many.

 

So, this might be a wild guess: Could it be that you are trying to write the logic in M (Power Query) instead of DAX?

 

If so, Power Query uses the following syntax for if clauses:

 

if [ColumnA] = 1 then [ColumnA] else [ColumnB] 

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
tackytechtom
Super User
Super User

Hi @AayWhy ,

 

Your code looks good to me. I created a calculated column in DAX with it and got the following result:

tomfox_0-1654024108869.png

 

The only thing I noticed is that you had one parentheses too many.

 

So, this might be a wild guess: Could it be that you are trying to write the logic in M (Power Query) instead of DAX?

 

If so, Power Query uses the following syntax for if clauses:

 

if [ColumnA] = 1 then [ColumnA] else [ColumnB] 

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi Tomfox,

 

Thank you helping me figure this out, everything is working now. And your guess was right. Still trying to explore Power BI actually.

Thanks again!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors