Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
nikolis_gr
Contributor III
Contributor III

Calculate sum, 3 dimensions 1 measure

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:

ResourceDateSAMPLEDRate
A12/1/20181/12/2018 16:156144799
A12/1/20181/12/2018 16:307466835
A12/1/20181/12/2018 16:456278066
A12/1/20181/12/2018 17:006138748
B12/1/20181/12/2018 16:156954240
B12/1/20181/12/2018 16:308249710
B12/1/20181/12/2018 16:456817208
B12/1/20181/12/2018 17:007067755
1 Solution

Accepted Solutions
Anil_Babu_Samineni

IS that what you mean?

sum(TOTAL <Resource> Rate)

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)

View solution in original post

3 Replies
FelipeFuku
Partner - Contributor III
Partner - Contributor III

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.

sunny_talwar

Try this

Sum(TOTAL <Resource, Date> Rate)

or you can try this

Aggr(NODISTINCT Sum(Rate), Resource, Date)
Anil_Babu_Samineni

IS that what you mean?

sum(TOTAL <Resource> Rate)

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)