Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi friends ,
i need to display only vlaues of A and B
i tried like this :
=if(worksoft='A' and 'B' , worksoft) ,
=if(worksof='A' and worksoft='B' , worksoft)
but it is not working, can anyone hlep me
For a calculated dimension you can use this:
=if(worksoft='A' or worksoft='B' , worksoft)
of this:
=if(match(worksoft,'A','B'),worksoft)
If you want to limit a listbox, try: (A|B)
Hi
in ur expression tab give expression like this
sum({<worksoft={'a','b'}>}value)
hi janardhan
u can use d following:
only( {<Worksoft= {A, B} >} Worksoft)
Hi Janardhan,
Try like this
=Match(worksoft, 'Á', 'B')
Hope this helps you.
Regards,
Jagan.
Hi Jagan,
i tried but it is showing blank
Hi Janardhan,
Can you attach some sample file, where you are using this, are u using this in Dimension?
Regards,
Jagan.
Hi Janardhan
use this
it work to me
in ur expression tab give expression like this
sum({<worksoft={'A','B'}>}value)
then it show only A and B values
For a calculated dimension you can use this:
=if(worksoft='A' or worksoft='B' , worksoft)
of this:
=if(match(worksoft,'A','B'),worksoft)
If you want to limit a listbox, try: (A|B)
Try ...
=if(worksoft='A', worksoft, if(worksoft='B', worksoft,'')
Thanks Wassenaar , its working