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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
RobGomez
New Member

IF Measure only shows under Tooltips on visual

Good day, all. I'm a fairly new user to PowerBi and am in the process of building a dashboard to manage my sales team. 

 

One of the key measures i'd like to use is the # of opportunties worked, which I have measured as totaling >=.75 of the original goal. 

 

I used the following measure which accurately labeled each record as "True" or "False." My issue is when I try to use this measure into a visual (Pie chart in my case) it will only go into the "Tooltips" and no the "Details" or "Values." Does anyone know why this is and how to fix it?

 

I really appreciate your input. Thanks. 

RobGomez_0-1605106730144.png

 

Issue:

 

RobGomez_1-1605106779667.png

 

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @RobGomez ,

Beacuse visuals in power bi will show the summarized values, only nubmer types that can be put into the Values field.

In addition, Details can only put column field, measure could not be put in it.

In this case, if you want to put your measure into Value field, perhaps you need to change the return value in IF statement, for example, like this:

Work Factor = 
IF(
    [_% Opend] >= .75,
    1,
    IF(
        [_% Opend] < .75,
        0
    )
)

 

Best Regards,
Community Support Team _ Yingjie Li
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

1 REPLY 1
v-yingjl
Community Support
Community Support

Hi @RobGomez ,

Beacuse visuals in power bi will show the summarized values, only nubmer types that can be put into the Values field.

In addition, Details can only put column field, measure could not be put in it.

In this case, if you want to put your measure into Value field, perhaps you need to change the return value in IF statement, for example, like this:

Work Factor = 
IF(
    [_% Opend] >= .75,
    1,
    IF(
        [_% Opend] < .75,
        0
    )
)

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors