cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
dnana
Microsoft
Microsoft

Count the result of a measure

On a previous post I received amazing help in: "Filter single column with multiple conditions (words in a string)"

 

Solved: Re: Filter single column with multiple conditions ... - Microsoft Power BI Community

 

Find text that has "red" and "green" in single column

 

Selector Measure = 
  VAR __Name = MAX('Table'[NAME])
  VAR __Table = SUMMARIZE('Table',[NAME],"__STRING",CONCATENATEX('Table',[STRING]))
  VAR __Table1 = ADDCOLUMNS(__Table,"__Red",SEARCH("red",[__STRING],,0),"__Green",SEARCH("green",[__STRING],,0))
  VAR __Names = DISTINCT(SELECTCOLUMNS(FILTER(__Table1,[__Red]>0 && [__Green]>0),"__Name",[NAME]))
RETURN
  IF(__Name IN __Names,1,0)

 

 

Measure_Result_g.jpg

 

Measure_Result.jpg

 

I want to count the results of the Measure and followed this post and few others but could not get it to work.

Solved: Is it possible to count the result of a measure? - Microsoft Power BI Community

 

As always, any insight would be appreciated!

@Greg_Deckler 🙂

1 ACCEPTED SOLUTION
daXtreme
Solution Sage
Solution Sage

// You can hide the [Selector Measure]
// from the user's view and use the following
// instead. It'll do what the other does
// and also will summarize correctly unlike the other.
// You can also replace the [Selector Measure]
// with its body inside the new measure and
// then get rid of the old one completely.
// Up to you.

[Your New Measure] =
sumx(
    values( 'Table'[Name] ),
    [Selector Measure]
)

View solution in original post

2 REPLIES 2
daXtreme
Solution Sage
Solution Sage

// You can hide the [Selector Measure]
// from the user's view and use the following
// instead. It'll do what the other does
// and also will summarize correctly unlike the other.
// You can also replace the [Selector Measure]
// with its body inside the new measure and
// then get rid of the old one completely.
// Up to you.

[Your New Measure] =
sumx(
    values( 'Table'[Name] ),
    [Selector Measure]
)

Thank your help. I appreciate the explanation!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors