Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community,
I wish you helped me figuring out the following:
I am using a table (3 dimensions : Resource, Timestamp, Date, 1 measute :Rate).
Date is calculated during the data loading
LOAD SAMPLED,
DAYNAME(SAMPLED) AS Date,
..
I thought that the following would sum Rate per resource per date but it just populates the existing measure per resource per timestamp:
sum(Aggr(Rate,Resource,Date))
Any help?
Sample Data:
Resource | Date | SAMPLED | Rate |
A | 12/1/2018 | 1/12/2018 16:15 | 6144799 |
A | 12/1/2018 | 1/12/2018 16:30 | 7466835 |
A | 12/1/2018 | 1/12/2018 16:45 | 6278066 |
A | 12/1/2018 | 1/12/2018 17:00 | 6138748 |
B | 12/1/2018 | 1/12/2018 16:15 | 6954240 |
B | 12/1/2018 | 1/12/2018 16:30 | 8249710 |
B | 12/1/2018 | 1/12/2018 16:45 | 6817208 |
B | 12/1/2018 | 1/12/2018 17:00 | 7067755 |
IS that what you mean?
sum(TOTAL <Resource> Rate)
Hi Nikolis,
Try changing the expression.. it should be like this:
Aggr( Sum(Rate), (Resource,Date) )
This way, you'll sum Rate, grouping by Resource and Date.
Please, let me know if it works.
Att, Fukumoto.
Try this
Sum(TOTAL <Resource, Date> Rate)
or you can try this
Aggr(NODISTINCT Sum(Rate), Resource, Date)
IS that what you mean?
sum(TOTAL <Resource> Rate)