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: 
Anonymous
Not applicable

Calculate salesbonus based on max bonus value

Hi,

I am trying to create an app that calculates salesbonus for our Salespersons. It works in steps so items between 1-10 give 100, between 10-20 200 and so on until 500 is reached. But the problem is that it works backwards, so if you have reached 20 the amount is 200 for every item sold, also items between 1-10 etc. So I need to find a way that finds the max value of bonus amount and applies to all former items sold.

   

SalesStaffSalesDateMax(QtySumInsurance)Max(BonusAmt)
BBK10/2/2017 0:006100
BBK10/3/2017 0:0011150
BBK10/4/2017 0:0016150
BBK10/5/2017 0:0022200
BBK10/6/2017 0:0030200
BBK10/9/2017 0:0036250
BBK10/10/2017 0:0038250
BBK10/11/2017 0:0042300
BBK10/12/2017 0:0047300
BBK10/13/2017 0:0056350
BBK10/14/2017 0:0055350
BBK10/16/2017 0:0059350
BBK10/17/2017 0:0061400
BBK10/18/2017 0:0065400
BBK10/19/2017 0:0069400

So in this example 400 is the maximum and I would like to be able to use that as a multiplier for items back in time or for example for 10/2/2017 I would calculate 6*400 = 2400.

Any ideas on how to solve this?

Regards

Birkir

1 Solution

Accepted Solutions
sunny_talwar

May be this

Max(TOTAL <SalesStaff> BonusAmt)

View solution in original post

5 Replies
sunny_talwar

May be this

Max(TOTAL <SalesStaff> BonusAmt)

MarcoARaymundo
Creator III
Creator III

Is the Bonus calculated by the amount per sale or by the accumulated amount of a given period?

Anonymous
Not applicable
Author

Sunny

Thanks for this, it works. I forgot one thing, on the first day of each month the accumulative number or QtySumInsurance should return to 0, I would handle that in the load any idea?

Anonymous
Not applicable
Author

Hi ,

Marco the bonus works by the number of item sold, so if you sell between 1-10 you get 100 for each,10-20 200 and so on. But each month the accumulative qty should return to 0 , I have not solved that.

sunny_talwar

Return to zero or are you looking for Max by each month?