For an axis value, you need to aggregate your sum by a field - I take it you want the maximum call_duration for any one of the staff? You'd then need Max(Aggr(Sum(Call_Duration), CalledStaff)) - that should give you the maximum sum of calls for any given called staff member. You should then be able to multiply that by your first part.