Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a list box that contains the status for every invoice I have:
invoice status €
PV001 01 10
PV002 01 10
PV003 01 05
PV004 99 05
PV005 99 06
PV006 02 08
I want a list box only with codes 10 and 05 the rest I don't want to be in the list code!
Thank's
Eduard
Use an expression for your listbox: =if(status='10' or status='05',status)
Hi!
You can create an expression from the list, as below:
=if( €= 10 or € = 5,€)
By Rebeca
Hi,
He wants the field '€' and not the 'status'.
😃
By Rebeca
thank's Gysbert!!!