Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
leonardovincent
Contributor
Contributor

Multiply fields

I want to add a formula to the script below that multiples Quantity * Sales in a fourth field named Sales Revenue.  Can you help?

LOAD

    ProductName,

    Quantity,

    Sales;

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Write this

LOAD

    ProductName,

    Quantity,

    Sales

    Quantity * Sales as [Sales Revenue]

From Source

View solution in original post

1 Reply
its_anandrjs
Champion III
Champion III

Write this

LOAD

    ProductName,

    Quantity,

    Sales

    Quantity * Sales as [Sales Revenue]

From Source