Multiply cell value based on another cell value

KittenBreath

New Member
Joined
Nov 20, 2022
Messages
16
Office Version
  1. 2021
Platform
  1. Windows
Hi all, I've been trying to figure out how to get Excel to multiply a cell's value based on a number in another cell. I am trying to create a simple weighted stats formula using rankings. I know I need to do an IF statement, but I can't seem to figure it out.

Cell Rankings
1 - 50 - * 3
51 - 125 - * 2.5
126 - 200 - * 1.5
201 - 250 - *0.5

Any help will be appreciated.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Assuming your rankings on A1
Excel Formula:
=IF(A1<51,A1*3,IF(A1<126,A1*2.5,IF(A1<201,A1*1.5,A1*0.5)))
 
Upvote 0
Solution
A concise example and expected results would help.
N.B. You can post an extract of your information with the forum's tool named XL2BB.

T202212a.xlsm
ABCDEF
1or
210025025013
3512.5
41261.5
52010.5
6
2e
Cell Formulas
RangeFormula
B2B2=A2*LOOKUP(A2,E2:F5)
C2C2=A2*LOOKUP(A2,{1,3;51,2.5;126,1.5;201,0.5})
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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