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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
cottrera
Post Prodigy
Post Prodigy

Dax Function help

Hi community , I have a report with two table visuals
Fields Category , From , To , Ditribution are taken from a static table and Property Count is a this measure (shown below)

Property Count =
var _scores = SUMMARIZE('Disrepairs Score','Disrepairs Score'[UPRN], "Score", SUM('Disrepairs Score'[SCORE]))
var _count = SUMX(_scores, IF([Score] <= SELECTEDVALUE('Score Distribution'[To]) && [Score] >= SELECTEDVALUE('Score Distribution'[From]),1))
return
IF(_count = 0 , "Zero" , _count)

 

cottrera_4-1686294935876.png

 

The next table is made of of fieldsUPRN, Org ID and Findings or Desktop reivew fields come from our Data warehousetable called Disrepairs Score.  The Score and Score Category are measures (shown below)

 

Score = SUM('Disrepairs Score'[SCORE])
 
Score Category =
CALCULATE(
    SELECTEDVALUE('Score Distribution'[Category ]
        ,blank ()),
         FILTER(  ALL( 'Score Distribution'),
            [Score] >= 'Score Distribution'[From] && [Score] <= 'Score Distribution'[To]))
 

cottrera_1-1686294580523.png

 

I need help to create a measure that counts the various catergories from this field (Table 2)cottrera_5-1686295212649.png

So that I can display the results here on table 1

cottrera_6-1686295265656.png

 

Thank you 

Richard

1 REPLY 1
lbendlin
Super User
Super User

Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.

https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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