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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

Tableau Fixed function to Power BI DaX

Hi,

 

Can anyone help me to convert from Tableau LOD to DAX .

 

{ FIXED [Employee Name],[Week Update] : SUM(
IF { FIXED :([time])}>36
THEN 1
ELSE 0
END
) }

 

 

Example data & Example result

pakjira_0-1649064623489.png

 

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

Here are the steps you can follow:

1. Create calculated column.

Sum1 =
CALCULATE(SUM('Table'[The number of Hours(Overtime)]),FILTER(ALL('Table'),'Table'[Employee Name]=EARLIER('Table'[Employee Name])&&'Table'[Week]=EARLIER('Table'[Week])))
OT over 36 hours per week =
var _count=CALCULATE(DISTINCTCOUNT('Table'[Employee Name]),FILTER(ALL('Table'),'Table'[Week]=EARLIER('Table'[Week])&&'Table'[Sum1]>=36))
return
IF(
_count=BLANK(),0,_count)

2. Put into the matrix, and design [OT over 36 hours per week] as MIN

vyangliumsft_0-1649126895367.png

3. Result:

vyangliumsft_1-1649126895368.png

Please click here for the pbix file

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

4 REPLIES 4
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

Here are the steps you can follow:

1. Create calculated column.

Sum1 =
CALCULATE(SUM('Table'[The number of Hours(Overtime)]),FILTER(ALL('Table'),'Table'[Employee Name]=EARLIER('Table'[Employee Name])&&'Table'[Week]=EARLIER('Table'[Week])))
OT over 36 hours per week =
var _count=CALCULATE(DISTINCTCOUNT('Table'[Employee Name]),FILTER(ALL('Table'),'Table'[Week]=EARLIER('Table'[Week])&&'Table'[Sum1]>=36))
return
IF(
_count=BLANK(),0,_count)

2. Put into the matrix, and design [OT over 36 hours per week] as MIN

vyangliumsft_0-1649126895367.png

3. Result:

vyangliumsft_1-1649126895368.png

Please click here for the pbix file

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Anonymous
Not applicable

Hi @v-yangliu-msft ,

           Thank you for advise, My results have been success. 

Thank you very much.

Anonymous
Not applicable

Hi , @mwegener 

 

This is  example data and an example result , Would you recommend something?

 

pakjira_0-1649064025781.png

Thank you.

mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

 

can you provide example data and an example result?

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors