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! Get ahead of the game and start preparing now! Learn more
Hi there,
I got a table which looks as follow:
Category Name | Value |
A | 12 |
B | 10 |
C | 15 |
I'm displaying the category name and its value using table visual in Power BI. Now I wanted to show Category Name 'D' and its value to 0 in the table visual. As you can see that Category Name 'D' does not exist in the table. However, I wanted to display in the visual. Is there any way of doing that? Any suggestions??
Solved! Go to Solution.
Hi @Dunner2020
You can use DAX to create a new table, a calculated table, like so (Modeling Menu --> Calculations ribbon --> "New Table"):
new table =
UNION(
'Table'
, ROW(
"Category Name", "D"
,"Value", 0
)
)If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @Dunner2020
You can use DAX to create a new table, a calculated table, like so (Modeling Menu --> Calculations ribbon --> "New Table"):
new table =
UNION(
'Table'
, ROW(
"Category Name", "D"
,"Value", 0
)
)If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 39 | |
| 37 | |
| 29 | |
| 24 |
| User | Count |
|---|---|
| 122 | |
| 110 | |
| 83 | |
| 69 | |
| 68 |