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

Button with Select

Hi All,

I have a question about this:

two tables

one call master:

[Master]:

LOAD * INLINE [

    MemberCode, Name

    1234, SA

    2345, TA

    3456, NA

];

other detail:

[Detail]:

LOAD * INLINE [

    MemberCode, type, Amount

    1234, R, 23

    1234, S, 234

    2345, R, 23

    3456, S, 23

];

I want to create 3 button based on type ('R','S','R&S'):

Data show like below:

MemberCode,Name,Btype

1234,SA,R&S

2345,TA,S

Is there any way to do this.

Thank you very much

5 Replies
whiteline
Master II
Master II

HI.

To show the data like above, create chart:

dimensions: MemberCode, Name

expression Btype: =concat(type,'&')

sujeetsingh
Master III
Master III

See this

Not applicable
Author

hi,

Sorry,i can't open the file.

Screenshot it?

Thank you very much!

Not applicable
Author

Hi,

how to ceate button?

thank you very much!

ngulliver
Partner - Specialist III
Partner - Specialist III

Hi, Harry.

Have a look at Steve's blog on buttons. There are some working examples you can use:

http://www.quickintelligence.co.uk/qlikview-buttons/

Cheers,

Neil