insert cellls vba

rakesh seebaruth

Active Member
Joined
Oct 6, 2011
Messages
303
Hi Guys

I have the following code

Cells(LR, 28).Value = txtCNum4.Value

In my useform txtCNum4 is a text box name Lease Period

What i want is when the user enters a number let's say 10.

vba inserts 10 cells after Cells(LR, 28) and i also want vba to add a heading month1 to month10 to those cells

thanks/regards

rakesh
 
Last edited:

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Private Sub cmdAdd_Click()


Dim LR As Long
'Make Sheet1 active
Sheet1.Activate


'Determine emptyRow
LR = WorksheetFunction.CountA(Range("A:A")) + 1


'Transfer information






Cells(LR, 1).Value = txtName1.Value
Cells(LR, 2).Value = txtDob.Value
Cells(LR, 3).Value = txtPob.Value
Cells(LR, 4).Value = txtDistrict.Value
Cells(LR, 5).Value = txthisher.Value
Cells(LR, 6).Value = txtBc.Value
Cells(LR, 7).Value = txtCso.Value
Cells(LR, 8).Value = txtRegd.Value
Cells(LR, 9).Value = txtNic.Value
Cells(LR, 10).Value = txtJob.Value
Cells(LR, 11).Value = txtAdd.Value
Cells(LR, 12).Value = txtMs.Value
Cells(LR, 13).Value = ComboBox1.Value
Cells(LR, 14).Value = ComboBox2.Value
Cells(LR, 15).Value = txtCn.Value
Cells(LR, 16).Value = txtName1.Value
Cells(LR, 17).Value = txtCNum1.Value
Cells(LR, 18).Value = txtCNum1.Value
Cells(LR, 19).Value = txtName1.Value
Cells(LR, 20).Value = txtDes.Value
Cells(LR, 21).Value = txtSt.Value
Cells(LR, 22).Value = txtEn.Value
Cells(LR, 23).Value = txtCo.Value
Cells(LR, 24).Value = txtNav.Value
Cells(LR, 25).Value = txtLocation.Value
Cells(LR, 26).Value = txtHi.Value
Cells(LR, 27).Value = txtDd.Value
Cells(LR, 28).Value = txtCNum4.Value
Cells(LR, 29).Value = txtCNum5.Value
Cells(LR, 30).Value = txtCNum6.Value
Cells(LR, 31).Value = txtCNum8.Value
Cells(LR, 32).Value = txtCNum7.Value
Cells(LR, 33).Value = txtCNum9.Value
end sub
 
Upvote 0
10 cells after Cells(LR, 28).Value would overlap what you've got. Do you mean 10 rows?

Or do you mean 1 header row with 10 columns and then the cells below with the data?
 
Upvote 0
Code:
... Previous code
Cells(LR, 32).Value = txtCNum7.Value
Cells(LR, 33).Value = txtCNum9.Value
    Dim i&
    For i = 1 To txtCNum4.Value
        Cells(LR, 33 + i) = "Month " & i
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,728
Messages
6,132,370
Members
449,721
Latest member
tcheretakis

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