Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hey All!
I have a number of issues with my matrix table and would love to help
1. I have a table with titles that I do not need, is there a way to delete the titles?
(Or another idea to make it look better?
2. I want to highlight a row from the table and make it a different background Is there such a possibility?
3. Where there is an empty cell I can insert - instead?
Attaches the file plus the data
Thanks for the helpers!
Link:
https://1drv.ms/f/s!AonyYI-TdspHgUhwngZ6OKvpnSsc
Solved! Go to Solution.
if its currency then try this one.
Net USD average per Day for Budget =
VAR result =
CALCULATE (
[Net USD average per Day],
'Revenues DB'[Data Source] IN { "Budget 2021" }
)
RETURN
FORMAT ( result, "$-#0.00" )If its still not works then is it possible for you to share your PBI file after removing sensitive data?
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @netanel ,
1. Column header we cant remove but we can change its background and text color as white, which you already did.
2. I want to highlight a row from the table and make it a different background Is there such a possibility? - You can change it based on certain conditions only or you can change completely.
3. You can use below measure for this:-
Measure = IF(ISBLANK(SUM(financials[Profit])),0,SUM(financials[Profit]))You can refer your file here:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Samarth_18
1. Thanks
2. iam looking for change it based on certain conditions, but i dont no how
3.
can you help mr to put the dash "-"
her:
Try below code:-
Net USD average per Day for Budget =
VAR result =
CALCULATE (
[Net USD average per Day],
'Revenues DB'[Data Source] IN { "Budget 2021" }
)
RETURN
CONCATENATE ( "-", result )
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Samarth_18
i get this
I tried alone even before I asked and I can not replace the empty cell really weird
Try this one:-
Net USD average per Day for Budget =
VAR result =
CALCULATE (
[Net USD average per Day],
'Revenues DB'[Data Source] IN { "Budget 2021" }
)
RETURN
FORMAT ( result, "-0.00" )
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Same result
Maybe becuse the format is currency?
if its currency then try this one.
Net USD average per Day for Budget =
VAR result =
CALCULATE (
[Net USD average per Day],
'Revenues DB'[Data Source] IN { "Budget 2021" }
)
RETURN
FORMAT ( result, "$-#0.00" )If its still not works then is it possible for you to share your PBI file after removing sensitive data?
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Samarth_18
Unfortunately it also does not work and I do not have a file I can share, I think maybe the problem is that the empty spaces are zero and not just Blank
Anyway you have helped me a lot so far
I will mark your answer as a solution
@netanel ,
1. I have a table with titles that I do not need, is there a way to delete the titles?
You can switch of title from table property in the visualization tab
2. I want to highlight a row from the table and make it a different background Is there such a possibility?
You have an option for Style. Or you have to do conditional formatting for all columns
3. Where there is an empty cell I can insert - instead?
You can try creating a measure only for conditional formatting and create color measure
colour =
var _sale = [sales]+0 //sales +0 to remove blank
return
Switch(true(),
_sale< 2000 , "red", "green"
)
and use that in conditional formatting using field value option
Conditional formatting the Pie Visual: https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/...
Hi Master! @amitchandak
1. I know but I got confused this is not the title of it
Column headers
2. I'm looking for a different background for a specific line and have not found anything that helps me in conditional formatting
3. I do not need a colored cell, I just need a dash "-"
Sorry I was not clear enough
If you can get into the file I attached it is really short and shows all the issues clearly
Thanks!!!
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 39 | |
| 24 | |
| 23 |
| User | Count |
|---|---|
| 144 | |
| 106 | |
| 63 | |
| 38 | |
| 31 |