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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
BalaKiranM
Helper II
Helper II

How to write ForEach function in Power BI

Experts, please help me to write the below code in Power BI Dax.

 

=If(IsNull([Shiftstarttime])ForEach([Shift_End_Date]);"";FormatDate([Shiftstarttime];"h:mm a"))

 

Thanks,

Bala

1 ACCEPTED SOLUTION

Hi @BalaKiranM ,

Please try create a column:

Column = 
IF(
    'Table'[Shift_End_Date] = BLANK(),
    "",
    FORMAT('Table'[Shiftstarttime],"h:mm AM/PM"
    )
)

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

5 REPLIES 5
v-cgao-msft
Community Support
Community Support

Hi @BalaKiranM ,

 

If the problem hasn't been solved yet. Could you please consider providing some sample data and expected output, screenshots are fine. This would be very helpful, thanks.🤗

 

How to provide sample data in the Power BI Forum

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

I cannot share the sample data due to client data privacy, the only help I am requesting is how we can convert the below syntax in DAX code. @amitchandak @Greg_Deckler pls help sir.

 

=If(IsNull([Shiftstarttime])ForEach([Shift_End_Date]);"";FormatDate([Shiftstarttime];"h:mm a"))

 

Thanks,

Bala

Hi @BalaKiranM ,

Please try create a column:

Column = 
IF(
    'Table'[Shift_End_Date] = BLANK(),
    "",
    FORMAT('Table'[Shiftstarttime],"h:mm AM/PM"
    )
)

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Greg_Deckler
Super User
Super User

@BalaKiranM For and While Loops in DAX - Microsoft Power BI Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thanks @Greg_Deckler, I am a begginer in DAX and not able to convert the below syntax in DAX. pls help with the DAX code.

 

=If(IsNull([Shiftstarttime])ForEach([Shift_End_Date]);"";FormatDate([Shiftstarttime];"h:mm a"))

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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