Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
This is the expressions I created for a specific chart:
This is how it looks in the chart tooltip:
Why aren't they in the same order?
why does the Non candidates duplicate itself?
and why don't I see the name like in the Non Candidates?
Please Assist,
Boris
Boris, you can create your own popup.
Uncheck the box "Text as Pop-up" for the shown expression. Create anew expression such as;
='Unique subscribers: ' & Count(Subscribers)
&chr(10)& 'Candidates: ' & Count(Candidates)
&chr(10)& 'Smart MA Decisions: ' & Count(Decisions)
&chr(10)& 'SMA by RT: ' & Count(SMA)
&chr(10)& 'Non Candidates: ' & Count(Non_Candidates)
and check the box "Text as Pop-up".
Uncheck the bar, symbol, etc, so it shows a popup icon (you may also leave it as is...it won't calculate and display a bar).
On the presentation tab uncheck "Popup Labels".
Then, your popup with appear like the following;
Unique subscribers: (value)
Candidates: ' (value)
Smart MA Decisions: (value)
SMA by RT: (value)
Non Candidates: (value)
You can then write the expression to show details in any order you wish. You can even embellish the information further.
--john
Can you pls upload the sample qvw? Do you have any sorting applied on your dimension values?
only sorting the Run ID - this is the only dimension
how can I upload a sample qvw?
while replying use advanced editor and use attach file.
my mistake, I meant how do I create a sample qvw?
the model is quite complex
Hi Boris,
You need to uncheck the 'TEXT AS POP UP' option for each and every expression., which is there in the bottom of expression tab.
Unmark "Text as Pop-Up", and then you will only get the values you are pointing with cursor.
The order can't be changed.
Hi Boris,
if you don't want expressions duplicate, you have to uncheck the box which displays pop-up when displya value box is checked (in expression tab, click on expression, uncheck box)
best regards
chris
Boris, you can create your own popup.
Uncheck the box "Text as Pop-up" for the shown expression. Create anew expression such as;
='Unique subscribers: ' & Count(Subscribers)
&chr(10)& 'Candidates: ' & Count(Candidates)
&chr(10)& 'Smart MA Decisions: ' & Count(Decisions)
&chr(10)& 'SMA by RT: ' & Count(SMA)
&chr(10)& 'Non Candidates: ' & Count(Non_Candidates)
and check the box "Text as Pop-up".
Uncheck the bar, symbol, etc, so it shows a popup icon (you may also leave it as is...it won't calculate and display a bar).
On the presentation tab uncheck "Popup Labels".
Then, your popup with appear like the following;
Unique subscribers: (value)
Candidates: ' (value)
Smart MA Decisions: (value)
SMA by RT: (value)
Non Candidates: (value)
You can then write the expression to show details in any order you wish. You can even embellish the information further.
--john
Thanks!!