Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody,
I'm trying to use a Valuelist to fill a Listbox, but I need to add a conditional value to my list.
My formula is something like:
=ValueList('Alpha', 'Beta', If(GetSelectedCount(myField)>0,'Gamma','Delta') )
Does the ValueList allow such an expression? How can I write it?
Tks
A
Hi,
Create a variable with the expression
vTest = If(GetSelectedCount(F1)>0,'Gamma','Delta')
Now use this variable in
=ValueList('Alpha', 'Beta', vTest )
Check attached file.
Regards,
Jagan.
Hi,
Create a variable with the expression
vTest = If(GetSelectedCount(F1)>0,'Gamma','Delta')
Now use this variable in
=ValueList('Alpha', 'Beta', vTest )
Check attached file.
Regards,
Jagan.
Hi,
Yes you can use like that.
Celambarasan
Creating a variable is always the easyest shortcut...
thanks jagan
bye
A