Excel Question - Logical Operators

doknights

New Member
Joined
Dec 3, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I am currently doing a performance review and I am attempting to create a formula that allows the sheet to calculate if the below targets were met

Most Goals not achieved 85% or ≥3 missed days.
Some Goals achieved 90% or 2 missed days.
Nearly all Goals achieved 95% or 1 missed day.
All Goals achieved 100% or no missed days.
All Goals achieved with some exceeding 100% or no missed days for 3 months consecutive

I have tried this formula on the sheet but it is only calculating the 40 points but not the 50 points which take into consideration the 3 months. Why?

=IF(ISBLANK(AM$116),"",SWITCH(TRUE,AM$116=100,40,AM$116>95,30,AM$116>=90,20,AM$116>85,10,AVERAGE(OFFSET($AL$116,0,1,1,3)),50))
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
I think you need to start with the lowesdt figure first.....Maybe this way
Excel Formula:
=IF(ISBLANK(AM116),"",IF(AM116<90,10,IF(AM116<95,20,IF(AM116<100,30,IF(AM116=100,40,50)))))
 
Upvote 0
I think you need to start with the lowesdt figure first.....Maybe this way
Excel Formula:
=IF(ISBLANK(AM116),"",IF(AM116<90,10,IF(AM116<95,20,IF(AM116<100,30,IF(AM116=100,40,50)))))
Thanks but this does not take into consideration the final metric "All Goals achieved with some exceeding 100% or no missed days for 3 months consecutive". This is why I had the average offset in my function to take into consideration the 3 month performance.
 
Upvote 0

Forum statistics

Threads
1,214,422
Messages
6,119,395
Members
448,891
Latest member
tpierce

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