Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am currently studying the Qlik Sense scripting and would like to know a suitable syntax for the below mentioned question.
I want to multiply two fields of a table ( Ex - Unit price vs Quantity) and display the result on to a newly created table field named Sales.
I would prefer using variables and appreciate if someone could help me with the above said question.
Thanks a lot in advance.
Regards,
Manu
to your script add a calculated field
Load
UnitPrice,
Quantity,
UnitPrice*Quantity as Sales
from tablename
to your script add a calculated field
Load
UnitPrice,
Quantity,
UnitPrice*Quantity as Sales
from tablename
Use a residence Load of your table and
UnitPrice*Quantity as a new field
Thank you
Thank you