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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expresion issue

I have four column in my excel sheet

flag

calmonth

amount

Budget

On the basis of amount and budget , i want a new column

i am just uploading the excel sheet, where i have calculated new field (only few values). the formuala that is used in excel sheet. i want to reflect in qlikview on

the basis of fiscal year(calmonth). That is when i select year and month, the values changes accordingly

1 Reply
jagan
Partner - Champion III
Partner - Champion III

Hi,

Use this script

Temp:

LOAD

    *,

    If(RowNo() = 1, Budget, (Amount - Previous(Budget))) AS Net;

LOAD Flag,

     Calmonth,

     Amount,

     Budget

FROM

(ooxml, embedded labels, table is Sheet1)

Or find file attached.

Regards,

Jagan.