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! Request now

Reply
TomSinAA
Helper IV
Helper IV

dax help

I have data in this format:

CategoryAreaRequirement
Cat1R11
Cat1R1 
Cat1R2 
Cat1R32
Cat1R43
Cat1R5 

 

I need to display the count and % of areas with and without requirements.  So that is looks like this:

AreaCount of Areas with no requirement%Count of Areas with requirement Total%
Cat1240%360%5100

 

Not sure how to approach this. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @TomSinAA 

You can refer to the following measure

Count of Areas with no requirement = var a=SELECTCOLUMNS(FILTER('Table',[Requirement]<>BLANK()),"a",[Area])
return CALCULATE(DISTINCTCOUNT('Table'[Area]),'Table'[Area] in a=FALSE())

Count of Areas with  requirement = DISTINCTCOUNT('Table'[Area])-[Count of Areas with no requirement]

Areas with no requiremen t% = DIVIDE([Count of Areas with no requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))

Areas with  requiremen t% = DIVIDE([Count of Areas with  requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))

Output

vxinruzhumsft_0-1690425818262.png

Best Regards!

Yolo Zhu

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

1 REPLY 1
Anonymous
Not applicable

Hi @TomSinAA 

You can refer to the following measure

Count of Areas with no requirement = var a=SELECTCOLUMNS(FILTER('Table',[Requirement]<>BLANK()),"a",[Area])
return CALCULATE(DISTINCTCOUNT('Table'[Area]),'Table'[Area] in a=FALSE())

Count of Areas with  requirement = DISTINCTCOUNT('Table'[Area])-[Count of Areas with no requirement]

Areas with no requiremen t% = DIVIDE([Count of Areas with no requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))

Areas with  requiremen t% = DIVIDE([Count of Areas with  requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))

Output

vxinruzhumsft_0-1690425818262.png

Best Regards!

Yolo Zhu

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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