Forum Discussion
Help with graph + tooltip
Hello
Currently I am looking for a way to be able to show in a graph certain information in the tooltip, Currently the graph shows the number of "eq boxes" that each "SEASON" contains category by "SHIP TYPE".
The problem that arises is when you want to add "Eq Boxes" to the tooltip section of the created graph, once added "%TG Eq Boxes" does not yield the correct percentage of "Eq Boxes" referring to the "SHIP TYPE" (SHIP TYPE is the legend of the graph) by "SEASON".
Currently the graph only interacts with segmenters "TYPE SHIP" and "DESTINATION COUNTRY"
I leave in images what I want to show in the graph if possible.
This shows the graph currently:
what I need to show:
of course, I thank you for your help!
Syndicate_Admin , based on what I got.
You need a measure like
divide([measure], calculate([measure], removefilters(Table[Tipo Nave]) ) )
2 Replies
- amitchandakSuper User
Syndicate_Admin , based on what I got.
You need a measure like
divide([measure], calculate([measure], removefilters(Table[Tipo Nave]) ) )
- Syndicate_AdminAdministrator
Thank you very much, it was the solution to my problem.
boxes eq2 = SUMX('B D', 'B D'[KG.]/5)help = DIVIDE([eq2 boxes], CALCULATE([eq2 boxes], REMOVEFILTERS('B D'[SHIP TYPE])))