hi
I want to created a pivot which shows a count of how many operations have been completed over the last 12 months by Month for each resource we have.
Sounds straightforward…
subquery:
Along with calculated fields to work out the Month name:
Your pivot is duplicating lines because you have the job number in the query below it. It will do the “grouping” by that lower query, even if you aren’t showing it in the pivot. You need to remove that field, and then it will roll up by Resource ID. You’ll need to adjust your formula to something like Count(1) to count the number of rows.