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
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
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.

Top Solution Authors