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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

LOD fixed Expression from Tableau

Hello there, I have a PowerBI problem that I hope you can help me with. I have to get this Tableau LOD statement in a powerBI table. 

 
image.png
 
So far I’ve tried the following DAX statement, which produced not quite the exact same results as the Tableau above.

 

image.png

Please note that the [# Fälle] measure in tableau is exactly the same as [Anz_Fälle] in PowerBI (simply a distinct count via case ID

5 REPLIES 5
v-easonf-msft
Community Support
Community Support

Hi , @Anonymous 

I don't know much about the use of the lod function in tabular.

So sharing sample data and your expected results  can better help us understand your issue directly.

 

Best Regards,
Community Support Team _ Eason

Anonymous
Not applicable

I'm trying to get an average value based on these 6 dimensions. The goal is to take the "RP nach Retax" column, get the sum and then compare that sum to the a different aggregation, based on the 6 columns mentioned in the fixed statement. (these later mentioned aggregation is what I gave you as the tableau/DAX statement.

Hi, @Anonymous 

You can refer to this demo.

Try to divide the measure into multiple measures similar to the following:

 

Total Amount = CALCULATE(SUM('Table'[Amount]),ALLEXCEPT('Table','Table'[Color],'Table'[Country],'Table'[Type]))

Rows = COUNTROWS(SUMMARIZE('Table','Table'[Color],'Table'[Country],'Table'[Type]))

measure = 'Table'[Total Amount]/[Rows]

 

The result will be similar to the following:

1.png

If it doesn't meet your requirement ,please explain it more.

Sharing some sample data and expected result in excel will be helpful  to   solve your problem.

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.


 

 

 

 

Anonymous
Not applicable

Even though I've tried these different approaches I still wont get the right results

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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