Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Hi,This might be a dumb question but I need to ask anyway.How do I include Derived Fields (derived from one or more source fields) in my form ?Eg. Qty * Price = ValueI want a field to display the value (non database field).Thanks
Modify SQL query for this purpose:
select field1,field2,...,Qty * Price as Valuefrom ...
Check SQL Query guidelines for more info.