Calculate daily adherence required to meet goal of 85% average over 4 weeks

scoutfew

New Member
Joined
Sep 19, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

May I please ask for assistance with working out a formula for my spreadsheet.

I am trying to calculate daily adherence required to meet the goal monthly adherence. Goal monthly adherence is 85% average over a 4 week period.

I would like to input daily adherence each day and have the spreadsheet tell me what would be required to meet that 85% average target. Is that possible?

This is my current idea:
The top section where I can input adherence data each day.
I was hoping I could create a formula where the bottom section would tell me what would be required over the month to meet the target 85%.

1663638123316.png


Any help is greatly appreciated!!!

- Scout.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
In future, you will probably get more assistance if you provide a sample of your data using the XL2BB add-in. Nobody wants to type out all your data from an image ;)

I don't agree with the way you calculate the "Month average". You're using an average of weekly averages - which isn't the same thing as a true monthly average. Having said that, both solutions below end up giving you the same result anyway.

Book1
ABCDEFG
1
2IF the "Month average" is a true monthly averageTarget85%
3
4
5
6
7MondayTuesdayWednesdayThursdayFridayWk Avg
8Week183.00%80.70%82.00%84.10%85.00%82.96%
9Week284.00%78.00%83.50%82.00%84.00%82.30%
10Week385.00%79.00%86.00%74.00%85.00%81.80%
11Week451.00%51.00%
12Mnth Avg80.39%
13
14
15
16prediction
17MondayTuesdayWednesdayThursdayFriday
18Week1     
19Week2     
20Week3     
21Week4 103.43%103.43%103.43%103.43%
22
Sheet2
Cell Formulas
RangeFormula
G8:G11G8=IFERROR(AVERAGE(B8:F8),"")
G12G12=IFERROR(AVERAGEIF(B8:F11,"<>",B8:F11),"")
B18:F21B18=IF(B8<>"","",($G$2*20-SUM($B$8:$F$11))/(COUNTBLANK($B$8:$F$11)))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C18:G18,B18:F21Expression=B8=""textNO
G12Expression=G12>=0.85textNO
B8:G11Expression=B8>=0.85textNO


Book1
ABCDEFG
1
2IF the "Month average" is an averageTarget85%
3of "weekly averages"
4
5
6
7MondayTuesdayWednesdayThursdayFridayWk Avg
8Week183.00%80.70%82.00%84.10%85.00%82.96%
9Week284.00%78.00%83.50%82.00%84.00%82.30%
10Week385.00%79.00%86.00%74.00%85.00%81.80%
11Week451.00%51.00%
12Mnth Avg74.52%
13
14
15
16prediction
17MondayTuesdayWednesdayThursdayFriday
18Week1     
19Week2     
20Week3     
21Week4 103.43%103.43%103.43%103.43%
22
Sheet3
Cell Formulas
RangeFormula
G8:G11G8=IFERROR(AVERAGE(B8:F8),"")
G12G12=IFERROR(AVERAGE(G8:G11),"")
B18:F21B18=IF(B8<>"","",($G$2*20-SUM($B$8:$F$11))/(COUNTBLANK($B$8:$F$11)))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
B18:F21Expression=B8=""textNO
G12Expression=G12>=0.85textNO
B8:G11Expression=B8>=0.85textNO
 
Upvote 0
Kevin you are an absolute legend!
Thank you and thank you for the XL2BB add in tip. I will be sure to use that in the future.
I hope you are having a great day!

- Scout.
 
Upvote 0
Kevin you are an absolute legend!
Thank you and thank you for the XL2BB add in tip. I will be sure to use that in the future.
I hope you are having a great day!

- Scout.
Happy to help Scout, and thanks for the feedback :)
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,520
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top