Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Lifesigns
Contributor
Contributor

Max Value in Pivot

Hi,

I have a pivot table with two dimensions: employee name, task name and then expressions are sum(task_time) and sum(forecast_time).

What I need to show is which of their tasks is taking the longest in a separate expression.

For example:

John Doe has booked 30hrs against 7 different tasks, the largest is 'Investment Time' so in another expression I need to show that it took 20hrs.

The tasks vary across all the employees.

Advice be appreciate...

Thanks,

Shane

 

 

1 Reply
chrismarlow
Specialist II
Specialist II

Hi,

Might take a bit of fiddling, but try something like;

max(aggr(sum(task_time),[employee name],[task name]))

FirstSortedValue([task name],-aggr(sum(task_time),[employee name],[task name]))

So like below;

20210524_1.png

Cheers,

Chris.