Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I have to remove particular data from listbox like below
Dim1
0
50
100
150
250
800
and I want to remove only 50 from Listbox
Dim1
0
100
150
250
800
Thank you
Use an expression =if(Dim1 <> 50, Dim1) as field for the listbox
Use an expression =if(Dim1 <> 50, Dim1) as field for the listbox
Thank you Gysbert
Hi !
Try with the match function :
where match(Dim1, 50) = 0 - It will keep all values except 50
if you want to add values it's very simple : match(Dim1, 50, 'Value2', 'Value3') = 0 (if it is text values place them between quotes)
if want to work by inclusion do '>0', it will keep only the values of the list.
Hi Priya,
use below expression in list box
=if(not Match(DIM,'50'),DIM)
Regards
Gamzee
Hi Marie,
Even its working perfect like this
=
if(match(Dim1,50)=0,Dim1)
Hi Gamzee,
Its woriking