Excel Formula Complex

kmelancon86

New Member
Joined
Jul 16, 2015
Messages
10
I am looking for a way to write a formula that can do the following.

I am doing torque values, and I created a table on one sheet that I will refer to as "torque Values"

What I am trying to do is:

If J9 >= 300, then take the value in O9, go to "torque values" find that value in column A, then paste the value in column b of "torque value" (that is next to the value found in column A)

I have no idea where to even start on this. any help would be great.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Could you post a sample of your data and expected results?
 
Upvote 0
You can save some screen prints and upload them to a site like imgur.com, then post the links here. Or you can upload the file to dropbox.
 
Upvote 0
This formula assumes your torque values and cells J9 and O9 are all in the same worksheet:
=IF(J9>=300,VLOOKUP(O9,A:B,2,FALSE),"")
 
Upvote 0
Give this a try:

=IF($B2='Torque Sheet'!$B$1,INDEX('Torque Sheet'!$B$3:$B$15,MATCH($C2,'Torque Sheet'!$A$3:$A$15,0)),INDEX('Torque Sheet'!$E$3:$E$15,MATCH($C2,'Torque Sheet'!$A$3:$A$15,0)))
 
Upvote 0
That formula was perfect. Is ended up
=IF([@RATING]=150,VLOOKUP([@[Bolt Size]],'Torque sheet'!A:B,2,FALSE),VLOOKUP([@[Bolt Size]],'Torque sheet'!A:E,5,))

Thank you so much for the help. I have never used a VLOOKUP, but seeing how easily that made things...I think I should start.
 
Upvote 0
Thanks for the reply dreid. I think I am going to stick with the VLOOKUP on this one, but I am going to save that formula you just posted for later comparison in making future formulas.
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,578
Members
449,174
Latest member
chandan4057

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