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
HemanthV
Helper II
Helper II

ALLEXCEPT is not working for virtual column

Hi Guys,

 

I am facing issue to get denominator to calculate percentage, i don't have any issue with Numerator since it is just a distinct count of projects but i am facing issue with denominator. I need to sum the count for individual category.

 

Denominator =
var virtable = SUMMARIZE('Table','Table'[Axis],'Table'[Value],"Count", DISTINCTCOUNT('Table'[Project Name]))
var denominator = CALCULATE( SUMX(virtable,[Count]), ALLEXCEPT('Table', 'Table'[Axis]))
return
denominator
 
I have created a virtual table and i am trying to add the "Count" column but ALLEXCEPT function is not working as expected here.
 
Expected Output:
Please help me on this!
Thanks in advance!
 

 

 

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

Hi @HemanthV ,

 

I'd suggest you create a new table and then create a measure separately:

Summarized = SUMMARIZE('Table','Table'[Axis],'Table'[Value],"Count", DISTINCTCOUNT('Table'[Project Name]))
Measure = CALCULATE(SUM(Summarized[Count]),FILTER('Summarized',[Axis]=MAX('Table'[Axis])))

 

Eyelyn9_0-1645076426375.png

 

Best Regards,
Eyelyn Qin
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

3 REPLIES 3
v-eqin-msft
Community Support
Community Support

Hi @HemanthV ,

 

I'd suggest you create a new table and then create a measure separately:

Summarized = SUMMARIZE('Table','Table'[Axis],'Table'[Value],"Count", DISTINCTCOUNT('Table'[Project Name]))
Measure = CALCULATE(SUM(Summarized[Count]),FILTER('Summarized',[Axis]=MAX('Table'[Axis])))

 

Eyelyn9_0-1645076426375.png

 

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

amitchandak
Super User
Super User

@HemanthV , change this and try

var denominator = CALCULATE( SUMX(filter(virtable,[Axis] =max([Axis])),[Count]))

Hi @amitchandak ,

 

Thanks for your reply. I have tried it, but it did not worked.

 

HemanthV_0-1644832249380.png

I have provided sample pbix, can you please try on that file?

 

Please find the attached pbix with sample data

https://drive.google.com/file/d/1grYgcTwNLzWdZdB4gLPwbpH23_NwcQb6/view?usp=sharing

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.