Forum Discussion
SabineOussi
Skilled Sharer
10 years agoDynamic Text
Hello, Is there a way that I can create a dynamic text within the text box? In other words, let's say I want to display the following: There are @numberoftickers submitted by @numberofusers ...
- 10 years ago
What you can do is to create a measure like
TextMeasure = "There are " + [numberoftickers] + " submitted by " + [numberofusers] + " and managed by " + [numberofadmins]
Now you can place this measure in a text box and that should show the desired result. Using text based measures is a handy technique in scenarios like this.
SabineOussi
Skilled Sharer
10 years agoMrDataGeek it is a card visualization and not a textbox. You can turn off the category label, turn on the title and put the title text you want.
MrDataGeek
10 years agoNew Member
Thanks SabineOussi! I figured that out last night and I was about to update my question before I saw your response. I did not initially think to turn off the "category label". I appreciate your help!