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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
jracer007
Helper IV
Helper IV

Values Show values ​​that do not have a related value in another table

Hello community I have a concern, it turns out that I have two tables, one stores the information of articles and the other stores the voting data of those articles. When I calculate the positive percentage of votes and put it on my display everything looks good.

 

power bi_diego6.png
However, not all my articles have votes. How do I make sure that articles that do not have votes in my visualization do not disappear?

 

power bi_diego7.png

 

Very Reags.

1 ACCEPTED SOLUTION

You can do it two ways:

 

  1. You have an outer measure that performs the calculation to add the zeros and display the outer measure:
    Measure to Display :=
    IF(
        ISBLANK([PercentageOfPositives2]),
        0,
        [PercentageOfPositives2]
    )
  2. You add the IF clause to your PercentOfPositives2 measure:
    PercentageOfPositives :=
    VAR result = [PositiveCount2]/([NegativeCount2] + [PositiveCount2])
    RETURN
    IF(
        ISBLANK(result),
        0,
        result
    )

View solution in original post

3 REPLIES 3
vega
Resolver III
Resolver III

Because the articles have no votes, they are blank and therefore will not show up in visuals. In order to get around this, you need to display the values as zeros instead of blanks. That can be accomplished with something like this:

 

Measure :=
IF(
        ISBLANK([Percentage of votes]),
        0,
        [Percentage of votes]
)

How could I apply that to my Measure?

PercentOfPositives2 = [PositiveCount2]/([NegativeCount2] + [PositiveCount2])

You can do it two ways:

 

  1. You have an outer measure that performs the calculation to add the zeros and display the outer measure:
    Measure to Display :=
    IF(
        ISBLANK([PercentageOfPositives2]),
        0,
        [PercentageOfPositives2]
    )
  2. You add the IF clause to your PercentOfPositives2 measure:
    PercentageOfPositives :=
    VAR result = [PositiveCount2]/([NegativeCount2] + [PositiveCount2])
    RETURN
    IF(
        ISBLANK(result),
        0,
        result
    )

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors