Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

How to replace values at dashboard level?

Hello!

 

Some questions please:

 

1) I have joined several tables using a common column. However, then I put columns from these tables together, there are some empty cells that appear in the joint column which do not appear in the column when I see it in its table. Why that happens and how can I fix it?

 

2) How can I perform IFs and replace values in a column at the dashboard level, without having to create a new column? Or it is necessary to create a new calculated column?

 

Thanks!

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

1) This is determined by the table relationship. I made an example:

My data model:

aa2.PNGaa3.PNGaa4.PNG

My visualization:

aa5.PNG

Maybe your data model is different from mine, but the principle is the same.

 

2) First, the dashboard is a concept in Power BI Service, while DAX can only be used in Power BI Desktop. 

For your problem, you can try to create a measure like this:

Measure = 
IF(
    MAX(Table2[Public ]) = BLANK() && MAX(Table1[Index]) <> BLANK(),
    "YES",
    MAX(Table2[Public ])
)

ii1.PNG

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

1) This is determined by the table relationship. I made an example:

My data model:

aa2.PNGaa3.PNGaa4.PNG

My visualization:

aa5.PNG

Maybe your data model is different from mine, but the principle is the same.

 

2) First, the dashboard is a concept in Power BI Service, while DAX can only be used in Power BI Desktop. 

For your problem, you can try to create a measure like this:

Measure = 
IF(
    MAX(Table2[Public ]) = BLANK() && MAX(Table1[Index]) <> BLANK(),
    "YES",
    MAX(Table2[Public ])
)

ii1.PNG

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

Empty column means there is some value missing in that dimension for one of more fact.

 

The fact where you have that empty value. Take that and put they join key both from dim and fact and check where is fact empty or dimension empty

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.