Next number with text and leading 0's VBA

rooster05

New Member
Joined
Mar 4, 2017
Messages
34
Hi all,
i have the following code which puts a sequential number in column P, which is fine.

My question is how do i prefix this with the letters VOMH and then have leading 0's (zeros) in the column, ie VOHM0001, VOMH0002 and so on.

Any help appreciated


Private Sub CommandButton2_Click()
If Application.WorksheetFunction.CountA("P:P") = 0 Then
[P1].Select
Else
On Error Resume Next
Columns(1).SpecialCells(xlCellTypeBlanks)(1, 16).Select
If Err <> 0 Then
On Error GoTo 0
[P150].End(xlUp)(1, 16).Select
End If
On Error GoTo 0
End If
With Range("P" & Rows.Count).End(xlUp).Offset(1)
.Value = .Offset(-1).Value + 1
End With
End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Try this.
Code:
Private Sub CommandButton2_Click()
    If Application.WorksheetFunction.CountA("P:P") = 0 Then
        [P1].Select
    Else
        On Error Resume Next
        Columns(1).SpecialCells(xlCellTypeBlanks)(1, 16).Select
        If Err <> 0 Then
            On Error GoTo 0
            [P150].End(xlUp)(1, 16).Select
        End If
        On Error GoTo 0
    End If

    With Range("P" & Rows.Count).End(xlUp).Offset(1)
        .Value = Format(Val(Mid(.Offset(-1).Value, 5)) + 1, """VOHM""0000")
    End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,884
Messages
6,122,082
Members
449,064
Latest member
MattDRT

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