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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
mantaga
Frequent Visitor

All Function not working correctly

Hello,

i have these 2 simple DAX Measures, with which I'm trying to calculate the percentage of each category. Therefore I use the All Function, but somehow it only works if I use the "criteriaID" instead of only "criteria".

 

All Column not working = CALCULATE([Invoice Category], ALL( AnalysisOfInvoiceTypesHistorie[criteria]))

All Column working       = CALCULATE([Invoice Category], ALL( AnalysisOfInvoiceTypesHistorie[criteriaID]))

 

Screenshot 2020-08-06 at 15.43.11.png

 

Does anybody have an idea on this ? I was thinking of the length of criteria?!

Thanks for any hint 🙂

 

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@mantaga 

 

Try it this way, include the key in ALL,

 

All Column  = CALCULATE([Invoice Category], ALL( AnalysisOfInvoiceTypesHistorie[criteria]),

AnalysisOfInvoiceTypesHistorie[criteriaID]))

 

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon on the right if you like this reply 🙂

YouTube, LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

6 REPLIES 6
Fowmy
Super User
Super User

@mantaga 

 

Try it this way, include the key in ALL,

 

All Column  = CALCULATE([Invoice Category], ALL( AnalysisOfInvoiceTypesHistorie[criteria]),

AnalysisOfInvoiceTypesHistorie[criteriaID]))

 

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon on the right if you like this reply 🙂

YouTube, LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

sturlaws
Resident Rockstar
Resident Rockstar

Hi @mantaga 

 

just wondering, is AnalysisOfInvoiceTypesHistorie[criteria] sorted by AnalysisOfInvoiceTypesHistorie[criteriaID] in your model?

 

Cheers,
Sturla

@sturlaws good point - yes that's the case...

 

Why does this sort by value prevent the all function to work ? 

 

Thanks!

amitchandak
Super User
Super User

@mantaga , You can try

 

CALCULATE([Invoice Category], allcrossfiltered( AnalysisOfInvoiceTypesHistorie))

CALCULATE([Invoice Category], ALL( AnalysisOfInvoiceTypesHistorie)) //

 

How to use allcrossfiltered and removefilters

https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
harshnathani
Community Champion
Community Champion

Hi @mantaga ,

 

Just use this measure

 

 ALL Values = CALCULATE([Invoice Category], ALL( AnalysisOfInvoiceTypesHistorie)

 

Regards,

Harsh Nathani

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.