Settlement Matrix Formula Wanted

Corporate_DGNR8

New Member
Joined
Jun 27, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi All,

Just after some help, I’m trying to design a simple as possible settlement matrix, so that two values are put into a spreadsheet I.e value to pay and agreed settlement and a percentage is returned.

That’s done, what I’m struggling to make work is based on the returned percentage in a cell reference is the below.

If it’s over 80% to return the word “Accept”
Under 80% but above 50% “Refer to Manager”
Under 50% “Automatic Decline”

*I’ve got a percentage and word array pre-setup in another tan from 100% to 0%, if that helps.

And because I haven’t written one of these for a long while, I’m lost and could use some guru advice please

Thanks

D
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
If it’s over 80% to return the word “Accept”
Under 80% but above 50% “Refer to Manager”
Under 50% “Automatic Decline”

Assunming the percent is in C2
then in D2
put

=IF( C2>0.8, "Accept", IF( C2 < 0.5 , "automatic Decline", "refer to manager"))

does that help

you may need an >= or <=
as you say over 80%
and Under 80%
what if it = 80% ???

same question for 50%

*I’ve got a percentage and word array pre-setup in another tan from 100% to 0%, if that helps.
otherways to do it, if you want a table where you can change the values and words - so not hardcoded
Index(Match) formula

Book3
ABCDEFG
1
210%decline
350%refer0%decline
480%accept50%refer
520%decline80%accept
690%accept
794%accept
8100%accept
955%refer
1030%decline
1122%decline
12
Sheet2
Cell Formulas
RangeFormula
D2:D11D2=INDEX($G$3:$G$5,MATCH(C2,$F$3:$F$5,1))


Note: Images are difficult to see , and also requires that I input all the data myself, which is very time consuming.

A SMALL sample spreadsheet, around 10-20 rows, would help a lot here, with all sensitive data removed, and expected results mocked up and manually entered, with a few notes of explanation.

MrExcel has a tool called “XL2BB” that lets you post samples of your data and will allow us to copy/paste your sample data into our Excel spreadsheets, saving a lot of time.

You can also test to see if it works ok, in the "Test Here" forum.

OR if you cannot get XL2BB to work, or have restrictions on your PC , then put the sample spreadsheet onto a share
I only tend to goto OneDrive, Dropbox or google docs , as I'm never certain of other random share sites and possible virus.
Please make sure you have a representative data sample and also that the data has been desensitised, remember this site is open to anyone with internet access to see - so any sensitive / personal data should be removed
 
Last edited:
Upvote 0
Brilliant, thank you. That’s worked perfectly with a slight tweak.

I thought I was over engineering the problem, really appreciate the help.
 
Upvote 0
i have edited original post - and added the use of a table lookup

you are welcome
 
Upvote 0

Forum statistics

Threads
1,215,055
Messages
6,122,902
Members
449,097
Latest member
dbomb1414

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