
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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...
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
create a variable to toggle your selections
Varialbe:
vYTDToggle: if(vYTDToggle=1,0,1)
TextBox Expression = if(vYTDToggle=1, Currentyearexpression, previousyearExpression)
If a post helps to resolve your issue, please accept it as a Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thnq..you all.
