Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How i can add name to textbox,chart using index

Hi

how can i add name to textbox,chart,listbox using Index.......

using like   =only({<index={6}>}$(vLanguage)) in General Tab of Textbox,listbox,Chart etc

5 Replies
goldnejea8
Partner - Creator
Partner - Creator

Your set analysis would return the 6th character of whatever vLanguage is.  Is this what you want?  Or do you want the title to be what vLanguage is?

=only({$(vLanguage)}name)

Not applicable
Author

Hi Goldneje,

Thanks for your response........

I am new to qlikview

But I want to display the textbox name,listbox name,Chart Name etc......

using index like this = only({<index={some value}>}$(vLanguage))

SunilChauhan
Champion
Champion

may be you need to use fieldvalue

only({<fieldvalue={6}>}$(vLanguage))

hope this helps

Sunil Chauhan
swuehl
MVP
MVP

You could create a lookup table like this:

LOAD * INLINE [

Index, German, English

1, Der, The

2, Die, The

3, Das, The

4, Wieso, Why

5, Weshalb, Why

6, Warum, Why

];

and then create a variable vLanguage and an input box to choose between the Languages German and English.

See attached.

Not applicable
Author

Hi swuehl,

Thanks for your immediate Response......

I got solution for my question using attached document send by you........

thank you very much