Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to get all recorsd
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;
any help?
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;