Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can you help me to solve this tricky problem

I have the following data model.

Header 1Header 2
Skill IDEmployee ID

Header 1Header 2Header 3
Employee IDMonthRemaining Capacity(can be +ve or -ve)

Month Filter
Month

Now I need to display the following:

Skill IDSkill CountRemaining Count
Skill IDCount of employee with this skillCount of employee having this skill and remaining capacity>0

The user shall have a month filter where he can select a range of months. Hence the above table should display the remaining count, by aggregating for each employee over the given duration of month for the remaining capacity column. Then if this sum is positive the count should be increased by 1 else don't increase.

Can anyone help me how should i acheive this. Thank you in advance.

2 Replies
MK_QSL
MVP
MVP

Better if you can provide us sample data file. It is very difficult to work without actual data in hand.

swuehl
MVP
MVP

I agree it would be better to post some more details about your data.

Just guessing:

Create a straight table chart with dimension [Skill ID], then two expressions:

1)

=count(distinct [Employee ID])

or if you want the count independent from your Month Selection:

=count({1} distinct [Employee ID])

2)

=sum( aggr( if(sum([Remaining Capacity]>0,1,0), [Employee ID]))

or

=count({<[Employee ID] = {"sum([Remaining Capacity])>0"}>} distinct [Employee ID])