Multiply Input Cell by Another Cell

menglish

New Member
Joined
Oct 25, 2015
Messages
6
Hi There,

I'm trying to multiply a cell within a table that I would input a number into by another cell and struggling with the VBA formula.

For example, I would input 5600 into F2 and want it to multiply by D2 and display the result within F2.

AB1CDEFG
1materialDesc.CubeLbsSunMonTues
2XYZMaterial190185600
3ABCMaterial6564.3751000
4
5

<tbody>
</tbody>


Thanks,

Matt
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Last edited:
Upvote 0
How about
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
   If Target.CountLarge > 1 Then Exit Sub
   If Not Intersect(Target, Range("[COLOR=#ff0000]E2:K100[/COLOR]")) Is Nothing Then
      Target.Value = Target.Value * Cells(Target.Row, 4)
   End If
End Sub
This needs to go into the relevant sheet module.
Whenever you input a number into E2:K100 it will be multiplied by the value in col D for that row.
Change the range in red to suit.
 
Upvote 0
I just helped someone with VBA code to replace a value entered as it is entered.
You should be able to take the same approach.
See here: https://www.mrexcel.com/forum/excel-questions/1109011-automatic-subtraction.html

If you need help, please provide more details, such as which ranges do you want to behave this way, and is it always the same cells/calculation?

I'm trying to build a weekly production planning tool for my team. There will be about 40 lines in total, which represents one SKU per line. Each row of in the range represents the days of the week as Sunday through Saturday, so the range would roughly be E2:K42. I want to be able to input an estimate number of units (the 5600 or 1000 in the example), and have that multiplied by the weight of the SKU in Column D to find the total weight of that particular SKU on that day.
 
Upvote 0
I'm trying to build a weekly production planning tool for my team. There will be about 40 lines in total, which represents one SKU per line. Each row of in the range represents the days of the week as Sunday through Saturday, so the range would roughly be E2:K42. I want to be able to input an estimate number of units (the 5600 or 1000 in the example), and have that multiplied by the weight of the SKU in Column D to find the total weight of that particular SKU on that day.
OK. I think Fluff's code should work for you then, if you just change the range in red to match your range (E2:K42).
Did you see if that does what you want?
 
Upvote 0
OK. I think Fluff's code should work for you then, if you just change the range in red to match your range (E2:K42).
Did you see if that does what you want?

I did get it to work, but it comes up with an Out of Stack Space (Run Time Error 28) dialogue
 
Last edited:
Upvote 0
I think Fluff might have forgotten one important part to his code (or else you might caught in an infinite loop). Use this variation:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
   If Target.CountLarge > 1 Then Exit Sub
   If Not Intersect(Target, Range("E2:K42")) Is Nothing Then
      [COLOR=#ff0000]Application.EnableEvents = False[/COLOR]
      Target.Value = Target.Value * Cells(Target.Row, 4)
      [COLOR=#ff0000]Application.EnableEvents = True[/COLOR]
   End If
End Sub
I can't seem to get it to work. Where should I copy this into?
In the proper sheet module.

If you are unfamiliar with VBA and the VBA Project Explorer, here is an easy way to get there:
1. Go to the worksheet you want to apply this to
2. Right-click on the sheet tab name at the bottom of your screen
3. Select "View Code"
4. Copy and Paste the code above in the resulting VB Editor window that pops up

That is it! Try it out. As you manually enter values into range E2:K42, the code should automatically change your entries.
 
Last edited:
Upvote 0
I did get it to work, but it comes up with an Out of Stack Space (Run Time Error 28) dialogue
Yes, see the change I made to his code in my previous post.
 
Upvote 0
You are welcome.
Glad we were able to help.
 
Upvote 0

Forum statistics

Threads
1,215,403
Messages
6,124,710
Members
449,182
Latest member
mrlanc20

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