How to multiply data ?

kerplunk

New Member
Joined
Jun 8, 2011
Messages
3
Dear all,
Greeting!!

Thx in advance for your kind help..

I have prob here..

How i want to multiply the data when..
A1-200
B1-4
..then it multiply become...
C1-200
C2-200
C3-200
C4-200

..it's meant the column C is multiply of A1 data based on number in B1
..and the C column keep multiply downward..

Your kind help is indeed helpfull since I working as a data entry..
Thank you so much for helping me..

regards,
Wan
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Welcome to the board, a macro can do what you want.
Try:
Code:
Sub RepeatingIterations ()
 
With Application
    .ScreenUpdating = False
    .Calculation = xlCalculationManual
End With

If Range("B1") > 0 Then
    Range("C1").Resize(Range("B1"), 1) = Range("A1")
Else
    MsgBox "Please check cell B1 contains a positive integer"
    Range("C1:C" & Range("C" & Rows.Count).End(xlUp).row).ClearContents
End If
 

With Application
    .ScreenUpdating = True
    .Calculation = xlCalculationAutomatic
End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,224,509
Messages
6,179,192
Members
452,893
Latest member
denay

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