Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi,
I have a column which I have to display as Average values for the calculation to work.
This however, then displays the total as average which I cant have.
Is there any way I can remove the total for it? I need the 99 removed ideally.
Thanks in advance
Liam
Solved! Go to Solution.
@Anonymous
Make sure that the column you include in your ISINSCOPE measure is the same as the one you are using in your visual. (ie, if the rows are from a dim table, you must use that same column in the ISINSCOPE measure)
See this example:
Rows for Item from Tabe A (see measure)
The measures are:
Average Actuals = AVERAGE('Table A'[Actuals]) +0
And the one used in the "Average without totals" table (NOTE: the "Item" in rows is from Table A = same as measure):
Average without totals = IF(ISINSCOPE('Table A'[Item]); [Average Actuals]; BLANK())
If however I use a column from a different table as rows, I get blank: ("Item" in rows from Table B)
Does that solve the problem?
Proud to be a Super User!
Paul on Linkedin.
@Anonymous
Use the ISINSCOPE function.
Say your table/matrix rows are from a column 'Table[id]', you can filter out the total with:
Average without totals = IF(ISINSCOPE(Table[id]), [Your Average Measure], BLANK())
Proud to be a Super User!
Paul on Linkedin.
Hi @PaulDBrown ,
Many thanks for your reply. Ive put it in but that measure displays nothing all the way down the column.
I have
@Anonymous
Make sure that the column you include in your ISINSCOPE measure is the same as the one you are using in your visual. (ie, if the rows are from a dim table, you must use that same column in the ISINSCOPE measure)
See this example:
Rows for Item from Tabe A (see measure)
The measures are:
Average Actuals = AVERAGE('Table A'[Actuals]) +0
And the one used in the "Average without totals" table (NOTE: the "Item" in rows is from Table A = same as measure):
Average without totals = IF(ISINSCOPE('Table A'[Item]); [Average Actuals]; BLANK())
If however I use a column from a different table as rows, I get blank: ("Item" in rows from Table B)
Does that solve the problem?
Proud to be a Super User!
Paul on Linkedin.
Hi,
Please try to turn off the total in visual's Format->Total:
Best Regards,
Giotto Zhi
Hi @v-gizhi-msft ,
Apologies, I should have been clearer.
I have other columns in the table and this would remove all totals.
Thanks
Liam
Seems fine, unless you want to ignore 0. What is the expected result and what you are getting
AVERAGEX(vwtest,if(vwtest[Points]=0, blank(),vwtestPoints]))+0
Hi @amitchandak,
Its not the calculation thats the problem, its the displaying of the total (99) which is averaging all of the numbers which isnt needed, and I'm not sure whether theres a way around it.
Thanks in advance
Liam
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |