Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to add bullet symbols in text object

hi,

i have to display..the ytd value in text box

and i..need to add bullet symbol at the bottom corner of the text object..

when ever i..clik on that bulet symbol...it has to display..pytd..value...

plz help with this...

1 Solution

Accepted Solutions
Not applicable
Author

You Can use qlikview in build images as well as your own costume images with loading BUNDLE key word.

Once you load the images they will available as qlikview built functions.

Observe the below images

Bundle.jpg

View solution in original post

4 Replies
swuehl
MVP
MVP

The bullet symbol can be shown e.g by using the Unicode Character 'BULLET' (U+2022):


You can create a text box of the requested size containing only this character, and using an action External - Set variable to toggle a variable that controls the displayed expression in your main text box.

See attached.

vinieme12
Champion III
Champion III

create a variable to toggle your selections

Varialbe:

vYTDToggle: if(vYTDToggle=1,0,1)

TextBox Expression = if(vYTDToggle=1, Currentyearexpression, previousyearExpression)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Not applicable
Author

You Can use qlikview in build images as well as your own costume images with loading BUNDLE key word.

Once you load the images they will available as qlikview built functions.

Observe the below images

Bundle.jpg

Anonymous
Not applicable
Author

Thnq..you all.