Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Good morning,
I have a measure that calculates the bottom quintile of a column, then calculates another column based on the filter. It works well except it is not ignoring the blank/null values in the P/FCF column below.
My measure: Bottom Quintile:=CALCULATE(Average(Table1[Return]),FILTER(Table1,Table1[P/FCF]<=PERCENTILE.EXC(Table1[P/FCF],0.2)))
The measure returns 8.98 (which includes the blank values in the bottom quintile) vs. the measure returning ~12.1 (which would exclude the blank values in the bottom quintile). Any advice/tips? Thank you! Kindly - James
Solved! Go to Solution.
You can include this either inside your FILTER like this...
Bottom Quintile =
CALCULATE (
AVERAGE ( Table1[Return] ),
FILTER (
Table1,
Table1[P/FCF] <= PERCENTILE.EXC ( Table1[P/FCF], 0.2 )
&& Table1[P/FCF] <> BLANK ()
)
)
Or
Bottom Quintile = CALCULATE ( AVERAGE ( Table1[Return] ), Table1[P/FCF] <> BLANK (), FILTER ( Table1, Table1[P/FCF] <= PERCENTILE.EXC ( Table1[P/FCF], 0.2 ) ) )
Either of those should give you 12.11
Add to your filter clause and exclude blank values?
I'm not following your response? What should I add to the filter in order to exclude blank values from the calculate function?
Thank you.
You can include this either inside your FILTER like this...
Bottom Quintile =
CALCULATE (
AVERAGE ( Table1[Return] ),
FILTER (
Table1,
Table1[P/FCF] <= PERCENTILE.EXC ( Table1[P/FCF], 0.2 )
&& Table1[P/FCF] <> BLANK ()
)
)
Or
Bottom Quintile = CALCULATE ( AVERAGE ( Table1[Return] ), Table1[P/FCF] <> BLANK (), FILTER ( Table1, Table1[P/FCF] <= PERCENTILE.EXC ( Table1[P/FCF], 0.2 ) ) )
Either of those should give you 12.11
Your solution worked! Thank you very much. I did a lot of research to no avail. I appreciate the help you provide here.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
44 | |
36 |