Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I want to create a measure that counts the number of '1's in one field [Rank] and divides it by the total number of cells that have a numerical value populated in [Score], in other words ignore 'UN' or blank cells. I will put this in a table or matrix as a group by
Score | Rank |
32 | 2 |
33 | 3 |
45 | 1 |
21 | 5 |
24 | 3 |
UN | - |
34 | 1 |
UN | - |
37 | 2 |
Result in this examaple would give 2/7
Thanks, MQ
Solved! Go to Solution.
// Let your table be T.
[Measure] =
var NumberOfOnes =
COUNTROWS(
FILTER(
T,
// T[Rank] must be a numerical field
// where "-" in your table must be
// a real BLANK. Do not mix numbers
// with text, please. Thanks.
T[Rank] = 1
)
)
var NumberOfNonblanks =
COUNTROWS(
FILTER(
T,
T[Score] <> "UN"
)
)
var Output =
DIVIDE( NumberOfOnes, NumberOfNonblanks )
return
Output
// Let your table be T.
[Measure] =
var NumberOfOnes =
COUNTROWS(
FILTER(
T,
// T[Rank] must be a numerical field
// where "-" in your table must be
// a real BLANK. Do not mix numbers
// with text, please. Thanks.
T[Rank] = 1
)
)
var NumberOfNonblanks =
COUNTROWS(
FILTER(
T,
T[Score] <> "UN"
)
)
var Output =
DIVIDE( NumberOfOnes, NumberOfNonblanks )
return
Output
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |