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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Count How Many Values Are Between Two Numbers...

I am trying to see how many counts of a specific value range between two numbers.  I am having a hard time understanding how I would count how many occrurrances are between this value range.  Take a look at the example screenshot below:

counts.PNG

Basically, I am trying to create a table filter very similar to the one I have made up here.  Is there anyway I could go about getting the count of each occurance between two numbers?

 

 

1 ACCEPTED SOLUTION
sgsukumaran
Resolver II
Resolver II

@Anonymous 

1. Create a caluclated column like

CTE Range=
SWITCH (
TRUE(),
CVE < 2.9 , "< 2.9",
CVE >= 3.0 && CVE <= 4.9, "3.0 - 4.9",
CVE >= 5.0 && CVE <= 5.9, "5.0 - 6.9",
CVE >= 7.0 && CVE <= 10.0, "7.0 - 10.0",
Blank())

2. Create a measure CTE Measure = Count(CTERange). 

3. Drop CTE Range and CTE MEasure inta table

View solution in original post

2 REPLIES 2
sgsukumaran
Resolver II
Resolver II

@Anonymous 

1. Create a caluclated column like

CTE Range=
SWITCH (
TRUE(),
CVE < 2.9 , "< 2.9",
CVE >= 3.0 && CVE <= 4.9, "3.0 - 4.9",
CVE >= 5.0 && CVE <= 5.9, "5.0 - 6.9",
CVE >= 7.0 && CVE <= 10.0, "7.0 - 10.0",
Blank())

2. Create a measure CTE Measure = Count(CTERange). 

3. Drop CTE Range and CTE MEasure inta table

Thanks - I've been searching for an answer all day. This worked perfectly.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.