Hello,
I've battling with this query for awhile now and I think I got it to work but need confirmation that is doing what I want it to do
Query is
My goal is to sum all planned hours and the subtract planned hours only in
"Admin - Non Working" to get a % Utilization ...
This works ... I just want to know this is actually working the way it should ....
Thank you in advance,
Arvin
I've battling with this query for awhile now and I think I got it to work but need confirmation that is doing what I want it to do

Query is
Code:
SELECT Sum(IIf([SumOfPlannedHours]=0,"%",([SumOfPlannedHours]/34.15*1)-([SumofPlannedHours] And [PPnRPriorityAreaName]="Admin - Working"))) AS [% of Utilization], Query1.[Employee Name]
FROM Query1
GROUP BY Query1.[Employee Name];
My goal is to sum all planned hours and the subtract planned hours only in
"Admin - Non Working" to get a % Utilization ...
This works ... I just want to know this is actually working the way it should ....
Thank you in advance,
Arvin