change cell value by using factors from another cell

ThomasOES

Board Regular
Joined
Aug 29, 2017
Messages
174
Hello
I would like to place data into a range D14:G19 and multiply each cell by another cell value and have result appear in same cell.

I would like for this to work

Code:
Range("D14:G19").Select
For Each cell In Selection
cell = cell * Range("C14").Value
Next

The cells should start as beginning number then are multiplied by Range("C14") and cells end as product.

Thanks
Tom
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
You can do that pretty easily without a loop, using the Copy -> Paste Special -> Multiply option.
In VBA code, it would look like:
Code:
    Range("C14").Copy
    Range("D14:G19").PasteSpecial Paste:=xlPasteAll, Operation:=xlMultiply, _
        SkipBlanks:=False, Transpose:=False
    Application.CutCopyMode = False
 
Upvote 0
Thanks Joe
I need to loop because sometimes the last column in the range has less number of rows with data. To copy and paste over the range would produce cells with zeros. Also I sometimes add a constant from cell D14.
Tom
 
Upvote 0
I need to loop because sometimes the last column in the range has less number of rows with data. To copy and paste over the range would produce cells with zeros.
You still do not need to loop. You can most likely use VBA to find the last row/column that you need.
If you can explain the logic for determining exactly where to end, we can probably write code to do it.

Also I sometimes add a constant from cell D14.
I am not sure what you are asking us to do, in this case.
If the cell you are multiplying by may change, how can we determine which cell to use?
Do you want a prompt asking the user? Or, do you want it to use the ActiveCell?
Please let us know what you want to happen.
 
Upvote 0
You still do not need to loop. You can most likely use VBA to find the last row/column that you need.
If you can explain the logic for determining exactly where to end, we can probably write code to do it.


I am not sure what you are asking us to do, in this case.
If the cell you are multiplying by may change, how can we determine which cell to use?
Do you want a prompt asking the user? Or, do you want it to use the ActiveCell?
Please let us know what you want to happen.



Sorry for the confusion. I want to apply the factors from cells A10 and B10 to each cell in range B2:E7. For instance B2 would be itself multiplied by A10 then B10 added. Same for all the cells in range B2:E7. Except for E3:E7 since no data.



[TABLE="width: 384"]
<tbody>[TR]
[TD="width: 64, bgcolor: transparent"][/TD]
[TD="width: 64, bgcolor: transparent"]A[/TD]
[TD="width: 64, bgcolor: transparent"]B[/TD]
[TD="width: 64, bgcolor: transparent"]C[/TD]
[TD="width: 64, bgcolor: transparent"]D[/TD]
[TD="width: 64, bgcolor: transparent"]E[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]Ca[/TD]
[TD="bgcolor: transparent"]R-1[/TD]
[TD="bgcolor: transparent"]R-2[/TD]
[TD="bgcolor: transparent"]R-3[/TD]
[TD="bgcolor: transparent"]R-4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]2[/TD]
[TD="bgcolor: transparent"]MON[/TD]
[TD="bgcolor: transparent"]0.0019[/TD]
[TD="bgcolor: transparent"]0.0018[/TD]
[TD="bgcolor: transparent"]0.0024[/TD]
[TD="bgcolor: transparent"]0.0024[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]3[/TD]
[TD="bgcolor: transparent"]CAL 1[/TD]
[TD="bgcolor: transparent"]0.0017[/TD]
[TD="bgcolor: transparent"]0.0017[/TD]
[TD="bgcolor: transparent"]0.0016[/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]4[/TD]
[TD="bgcolor: transparent"]SAMP 1[/TD]
[TD="bgcolor: transparent"]0.003[/TD]
[TD="bgcolor: transparent"]0.0029[/TD]
[TD="bgcolor: transparent"]0.0027[/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]5[/TD]
[TD="bgcolor: transparent"]CAL 2[/TD]
[TD="bgcolor: transparent"]0.0047[/TD]
[TD="bgcolor: transparent"]0.0044[/TD]
[TD="bgcolor: transparent"]0.0035[/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]6[/TD]
[TD="bgcolor: transparent"]SAMP 2[/TD]
[TD="bgcolor: transparent"]0.004[/TD]
[TD="bgcolor: transparent"]0.0038[/TD]
[TD="bgcolor: transparent"]0.0047[/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]7[/TD]
[TD="bgcolor: transparent"]CAL 3[/TD]
[TD="bgcolor: transparent"]0.0062[/TD]
[TD="bgcolor: transparent"]0.0049[/TD]
[TD="bgcolor: transparent"]0.0062[/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]8[/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]9[/TD]
[TD="bgcolor: transparent"]X[/TD]
[TD="bgcolor: transparent"] Const[/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]10[/TD]
[TD="bgcolor: transparent, align: right"]0.000035[/TD]
[TD="bgcolor: transparent"] 0.001775[/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,335
Members
452,636
Latest member
laura12345

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