A
AntonioRio
I have a table containing several Projects, Areas (where project takes place)
and projects Phases.
I made a query that Counts the total of projects in each area AND phase:
Query_Projects:
Phase Area CountOfPhase
Pre-project DIFN 3
Pre-project DIFS 8
Pre-project DIMB 1
Pre-project DILO 1
Portfolio DIFN 6
Portfolio DIFS 1
Portfolio DIMB 5
Portfolio DILO 4
Execution DIFN 2
Execution DIFS 2
Execution DIMB 3
Execution DILO 6
But I want this query to group results that are not from DIFN or DIFS. So in
this example, I would have DIMB + DILO projects added together, as shown
below:
Pre-project DIFN 3
Pre-project DIFS 8
Pre-project Others 2
Portfolio DIFN 6
Portfolio DIFS 1
Portfolio Others 9
Execution DIFN 2
Execution DIFS 2
Execution Others 9
How do I code this?
Thanks
Antonio Machado
and projects Phases.
I made a query that Counts the total of projects in each area AND phase:
Query_Projects:
Phase Area CountOfPhase
Pre-project DIFN 3
Pre-project DIFS 8
Pre-project DIMB 1
Pre-project DILO 1
Portfolio DIFN 6
Portfolio DIFS 1
Portfolio DIMB 5
Portfolio DILO 4
Execution DIFN 2
Execution DIFS 2
Execution DIMB 3
Execution DILO 6
But I want this query to group results that are not from DIFN or DIFS. So in
this example, I would have DIMB + DILO projects added together, as shown
below:
Pre-project DIFN 3
Pre-project DIFS 8
Pre-project Others 2
Portfolio DIFN 6
Portfolio DIFS 1
Portfolio Others 9
Execution DIFN 2
Execution DIFS 2
Execution Others 9
How do I code this?
Thanks
Antonio Machado