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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
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