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: 
anat
Master
Master

how to load excel data

Team,

how to load attached excel data in qlikview?

description are same for some entries ,suppose if i select asd  for jan month  total  displaying  2,

Labels (1)
1 Reply
MK_QSL
MVP
MVP

Something like this...

Data:

CrossTable(Month, Data)

LOAD F1,

     [42005.000000],

     [42036.000000],

     [42064.000000]

FROM

test123.xlsx

(ooxml, embedded labels, table is Sheet2, filters(

Remove(Row, RowCnd(CellValue, 1, StrCnd(contain, 'Revenue')))

));

Final:

Load F1 as Name, Date(SubField(Month,'.',1),'MMM-YY') as MonthYear, Num(Data) as Data Resident Data

Where Len(Trim(Data)) <> 0;

Drop Table Data;