Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

All records

Hi,

I need to get all recorsd

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi John,

Try this,


CumulatvieDaily:

LOAD Reg,
[Date and Time],
Date,
[Cumulative Number]
FROM
[DailyCumulative Example.xlsx]
(
ooxml, embedded labels, table is Sheet1);

Left Join (CumulatvieDaily)
Load Reg,
Date,
Max([Cumulative Number]) - Min([Cumulative Number]) as DailyRecords
Resident CumulatvieDaily
Group by Reg, Date;

View solution in original post

2 Replies
Anonymous
Not applicable
Author

any help?

tamilarasu
Champion
Champion

Hi John,

Try this,


CumulatvieDaily:

LOAD Reg,
[Date and Time],
Date,
[Cumulative Number]
FROM
[DailyCumulative Example.xlsx]
(
ooxml, embedded labels, table is Sheet1);

Left Join (CumulatvieDaily)
Load Reg,
Date,
Max([Cumulative Number]) - Min([Cumulative Number]) as DailyRecords
Resident CumulatvieDaily
Group by Reg, Date;