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

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
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,217,371
Messages
6,136,179
Members
449,996
Latest member
duraichandra

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