Uzma Shaheen
Active Member
- Joined
- Nov 10, 2012
- Messages
- 484
- Office Version
- 365
- 2021
- Platform
- Windows
- Mobile
- Web
Hi All,
Im hoping you could help me with a formula that gives me the right % based on these scenarios
I have columns that have data like this
Planned Attended Unplanned Attended 11-Jun 12-Jun 13-Jun 14-Jun 15-Jun 16-Jun 17-Jun 18-Jun 19-Jun 20-Jun 21-Jun 22-Jun 23-Jun
1 1
1 1
1 1 14:00
1 1 13:00
1 1 14:00
1 1 13:00
1 1 14:00
1 1 14:00
1 1 13:00
I need a formula that will give me the following for Planned...
Scenario 1) If agents were planned to attend (That will be based on whether there is a time slotted in for a date) and they didnt attend then give a % of how many people that didnt attend
so say if 10 were planned and 8 attended then thats straight forward enough 8/10 = 80%
However if 10 were planned in and 12 people attended (There is a column where we fill in yes for unplanned guys) then that should show 12/10 = 120% (2 additional people)
If 10 were scheduled to attend and out of those 10, 8 attended but we got 2 more people who were not planned and attended, then that should show as 100%
So the aim is
If planned and not attended then give a %
If planned and not attended however we got people to fill in those gaps (based on whether there is a yes in that column) for that agent then give a %
If Not planned and we got additional people to attend then give a %
so 10 scheduled - 8 attended = 80%
10 scheduled - 8 attended from original plan - 2 additional attended or 4 additional attended then 100 or 120%
10 scheduled - 14 attended then = 140%
Hope this makes sense - i need a formula that will give me a % and count for that
Col E has unplanned but attended, C has whether they attended also and M9 onwards is the dates
In planned - i have this formula but this is wrong
=IF(ISBLANK(J9),"",IF(AND(E9="YES",C9=""),0,IF(AND(E9="YES",C9<>""),1,IF(COUNT(M9:AU9)>1,1,COUNT(M9:AU9)))))
Im hoping you could help me with a formula that gives me the right % based on these scenarios
I have columns that have data like this
Planned Attended Unplanned Attended 11-Jun 12-Jun 13-Jun 14-Jun 15-Jun 16-Jun 17-Jun 18-Jun 19-Jun 20-Jun 21-Jun 22-Jun 23-Jun
1 1
1 1
1 1 14:00
1 1 13:00
1 1 14:00
1 1 13:00
1 1 14:00
1 1 14:00
1 1 13:00
I need a formula that will give me the following for Planned...
Scenario 1) If agents were planned to attend (That will be based on whether there is a time slotted in for a date) and they didnt attend then give a % of how many people that didnt attend
so say if 10 were planned and 8 attended then thats straight forward enough 8/10 = 80%
However if 10 were planned in and 12 people attended (There is a column where we fill in yes for unplanned guys) then that should show 12/10 = 120% (2 additional people)
If 10 were scheduled to attend and out of those 10, 8 attended but we got 2 more people who were not planned and attended, then that should show as 100%
So the aim is
If planned and not attended then give a %
If planned and not attended however we got people to fill in those gaps (based on whether there is a yes in that column) for that agent then give a %
If Not planned and we got additional people to attend then give a %
so 10 scheduled - 8 attended = 80%
10 scheduled - 8 attended from original plan - 2 additional attended or 4 additional attended then 100 or 120%
10 scheduled - 14 attended then = 140%
Hope this makes sense - i need a formula that will give me a % and count for that
Col E has unplanned but attended, C has whether they attended also and M9 onwards is the dates
In planned - i have this formula but this is wrong
=IF(ISBLANK(J9),"",IF(AND(E9="YES",C9=""),0,IF(AND(E9="YES",C9<>""),1,IF(COUNT(M9:AU9)>1,1,COUNT(M9:AU9)))))