Link to home
Start Free TrialLog in
Avatar of cmatchett
cmatchettFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Excel formulaes

I require to be able to count the number of times a GPO policy setting has been set across multiple GPOs.  I had this initial idea...My columns would be

COLUMN TITLE
A             SCOPE
B             POLICY SETTING NAME  
C             POLICY SETTING VALUE
D             POLICY SETTING PATH
E             GPO

I was going to do a =countif(B4:B70,"[POLICY NAME]

That would count the amount of times a policy setting has been set across all my GPOs.  I would then like it to explicitly list for me the GPOs in which the setting appears on a different sheet?
Avatar of Ingeborg Hawighorst (Microsoft MVP / EE MVE)
Ingeborg Hawighorst (Microsoft MVP / EE MVE)
Flag of New Zealand image

Hello,

you could use the autofilter to filter the table by the value you want to see. Or, using Advanced Filter you could create a new table (albeit on the same sheet, but with a little VBA that can be moved to a different sheet).

cheers, teylyn
You should use a Pivot Table.  You can pivot on Column E and then do a count everytime it appears.  When you click on the count, Excel will create a table of just the GPO with all of the fields you have in your original table.

If you want to provide a sample Excel sheet, I will add the Pivot.

If you want to try it yourself, highlight the table, then Insert, Pivot Table.  Verify you have the correct range.

In the Pivot Table Field List, pull down the GPO column (or whichever value you wish to isolate) into Row Labels and pull it down again into the Values box.  Make sure it says "Count"

It will build a table and then you can click on the count value to display all the GPO entries that match.

Hope it works!
Assuming your data is in a sheet called Data then in your summary sheet assume you have the name in A1 and the COUNTIF formula in A2 then in A4 down to list the GPOs try

=IF(ROWS(A$4:A4)>A$2,"",INDEX(Data!E$4:E$70,MATCH(1,INDEX((Data!B$4:B$70=A$1)*(COUNTIF(A$3:A3,Data!E$4:E$70)=0),0),0)))

copy that down, when GPOs are exhausted for that name you get blanks

I'm assuming that all GPOs are different

regards, barry
ASKER CERTIFIED SOLUTION
Avatar of cmatchett
cmatchett
Flag of United Kingdom of Great Britain and Northern Ireland 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
Avatar of cmatchett

ASKER

i ended up using microsoft soft access