The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi All,
Want to remove (percent of first & percent of previous) in funnel chart, is there any options to remove or any alternative
looking forward for you solutions.
Thanks in Advance,
Solved! Go to Solution.
Hi @Anonymous ,
It is not possible to selectively remove content from a prompt message, so I would suggest that you customize a tooltip using my approach, referencing something like the following.
M_tooltip =
VAR a =
SELECTEDVALUE ( 'Table'[category] )
RETURN
"sum:"
& CALCULATE (
SUM ( 'Table'[value] ),
FILTER ( ALL ( 'Table' ), a = 'Table'[category] )
) & " " & "category:"
& CALCULATE (
MAX ( 'Table'[category] ),
FILTER ( ALL ( 'Table' ), a = 'Table'[category] )
)
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
According to your description, if you don't want to display any alert message when the mouse hovers over the corresponding column. You can turn off this option by selecting format->tooltip
If you want to customize the content in the alert message, you can refer to the following steps:
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Henry,
Thanks for the answer.
The problem statement is that the first two pieces of information on the tooltip are required, but the last two (Precent of First and Percent of Previous) are not displayed correctly and are not required, so I asked if there were any options to remove these two from these visuals.
PFA,
Is there any way to remove just these? If it's possible, let me know.
Thanks and regards.
Joelraj M.
Hi @Anonymous ,
It is not possible to selectively remove content from a prompt message, so I would suggest that you customize a tooltip using my approach, referencing something like the following.
M_tooltip =
VAR a =
SELECTEDVALUE ( 'Table'[category] )
RETURN
"sum:"
& CALCULATE (
SUM ( 'Table'[value] ),
FILTER ( ALL ( 'Table' ), a = 'Table'[category] )
) & " " & "category:"
& CALCULATE (
MAX ( 'Table'[category] ),
FILTER ( ALL ( 'Table' ), a = 'Table'[category] )
)
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you so much, Henry
@Anonymous , You can disable the tooltip or create a small tooltip page and use that
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
182 | |
81 | |
64 | |
46 | |
41 |