Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

i have some calculated data in excel i want to implement same in qlikview ?

i have some calculated data in excel i want to implement same in qlikview ?

please find attached excel sheet contains two tabs base data and calc data

calc tab  contain some calculations are there i want to show same output in qlikview by using pivot or straigh table

common column in both the sheets DCC column

please help on that

thanks

17 Replies
MarcoWedel

please post your current application version to see which part is still missing.

thanks

regards

Marco

Not applicable
Author

how to right excel vlookup formula in qlikview script

MarcoWedel

Hi,

like Eddie Morah already suggested, you might use the ApplyMap() function:

mapBaseData:

Mapping

LOAD DCC,

    January

FROM [http://community.qlik.com/servlet/JiveServlet/download/621476-129488/Sample%20Data.xlsx] (ooxml, embedded labels, table is [Base Data]);

tabInput:

LOAD DCC,

    ICC,

    cost,

    Inter,

    ApplyMap('mapBaseData', DCC) as Expe

FROM [http://community.qlik.com/servlet/JiveServlet/download/621476-129488/Sample%20Data.xlsx] (ooxml, embedded labels, header is 2 lines, table is Calc);

QlikCommunity_Thread_135438_Pic1.JPG.jpg

hope this helps

regards

Marco

Not applicable
Author

what about excel formulas

that is excel out put simply u load in chart

i want qlikview calucalted data

in excel ile u can find qlikview out put values

in in side if u click any sell u can see excel formulas i want implememt same logic in qlikview

MarcoWedel

Maybe I didn't explain enough, let me try again.

In the script, I posted before, I used a mapping load to create a map of your excel lookup table (sheet "Base Data").

I then used the applymap function to lookup the DCC value in this mapping table during the load of your data table (sheet "Calc") and loaded the corresponding January value as a new field "Expe", just like your vlookup function does in Excel.

So it's not just the Expe column loaded from your Excel source, like you suggested.

hope this helps

regards

Marco

Not applicable
Author

if u click inta in and intra out columns excel file

u can find below formulas

=SUMIFS(J:J,$B:$B,$A7)

=IF($D7="Internal",(H7+I7)*$C7,0)

how to implement above foumulas in qlikview pivoit table or script

please help on that

Not applicable
Author

any one

MarcoWedel

did you successfully  try the applymap approach for the Expe field?