Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.
Issue:
Solved! Go to Solution.
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.
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.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
98 | |
61 | |
47 | |
36 | |
34 |