Link to home
Start Free TrialLog in
Avatar of mnat1201
mnat1201

asked on

SCCM Report on Specific Collections Totals

Our Project Managers want to track the progress of our Windows 7 x64 upgrades by SCCM site. I'm trying to find or create a report that will show them the following 4 columns:

Site Code | All Windows Workstations Total | All W7 x64 Total | % Machines Upgraded

The request seems simple enough and we have collections set up by Site Code already that contain these totals. I just need to collect the totals and pull them into one report.

Is there an existing report I can use as a template, or one I could copy and modify that is similar to this request? The closest I could find was "Count Operating System Versions", but this report doesn't break down by Site Code or Collection (just OS).

My skills are also limited in Report Builder, but if someone can point me in the right direction, I've been pretty good at getting these custom reports to work.

Thanks again!

mnat
Avatar of merowinger
merowinger
Flag of Germany image

Maybe this helps? Just replace Collection X and Collection Y with the real Collection names
It just combines the Count of specific Collections in on Report:
Select (
select COUNT(*) 
from v_FullCollectionMembership FULLC
INNER JOIN v_Collection COLL ON COLL.CollectionID = FULLC.CollectionID
WHERE COLL.Name = 'Collection X') as 'All Windows Workstations Total'
,
(select COUNT(*) 
from v_FullCollectionMembership FULLC
INNER JOIN v_Collection COLL ON COLL.CollectionID = FULLC.CollectionID
WHERE COLL.Name = 'Collection Y') as 'All W7 x64 Total'

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of merowinger
merowinger
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial