Index match and mutiply

andrew_milonavic

Board Regular
Joined
Nov 16, 2016
Messages
98
Hey Everyone,

I have a formula that text joins three cells using index/match for each. The second cell being joined is a number. Is it possible to have the number being returned by the index/match multiplied by a number in another cell?

If my current formula returned: Truck 5 Cat. The new formula would return: Truck 10 Cat. Assuming the cell to multiple by had 2 in it.

I have the above working with vlookup, but with the amount of data it's slow to load and calculate so I'm trying to convert to index/match.

Hope that makes sense.

Thanks

Andrew
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Have you simply tried multiplying the match by two ? or even by the cell (=A1 & " " & VLOOKUP(F1,B1:D4,3)*G1 & " " & C1, =A1 & " " & VLOOKUP(F1,B1:D4,3)*2 & " " & C1 etc)
 
Last edited:
Upvote 0
Hi MrTeeny,

When calculating the match by two or the cell by 2 it just moves the column. So If the formulas column is 3 than it becomes column 5 (If multiplied by 2).

I can make the vlookup work, but with the amount of data it slows my excel sheet. I've been told that index/match is faster, so I'm trying to convert.

Thanks

Andrew
 
Upvote 0
...When calculating the match by two or the cell by 2 it just moves the column....

You are probably putting the "*2" in the wrong place.
assuming you have something like this...
=(1st-formula)&" "&(2nd-formula)&" "&(3rd-formula)
you need to adjust that to this...
=(1st-formula)&" "&(2nd-formula)*&$Z$1" "&(3rd-formula)
This assumes that your multiplier is in Z1
 
Upvote 0

Forum statistics

Threads
1,216,226
Messages
6,129,605
Members
449,520
Latest member
TBFrieds

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