Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a list box called Payment Type. The list box is using a field called PaymentType which has values Paid, Not paid and Combined. I already have the qvds built for my data but I want to change the Combine value to Total on the listbox/display without doing my load statement again or build qvd again. Any ideas?
Just right click on sheet and say new sheet object -> list box -> now instead of selecting field select expression and type above expression
Hi,
You can create a calculated listbox.
Create a new textbox and instead of selecting field select Expression (U will find it at bottom) then type below expression
if(wildmatch(PaymentType,'Combined'),'Total',PaymentType)
Regards,
Kaushik Solanki
How do I create a calculated list box?
Just right click on sheet and say new sheet object -> list box -> now instead of selecting field select expression and type above expression
Thanks, it is working now.
Hi,
Will you mark this post as answered.
Regards,
Kaushik Solanki