Kindly help on the Userform Textbox code

SPLUCENA

Board Regular
Joined
Feb 24, 2009
Messages
189
Hi,

Need help on the below code, it is giving me a runtime error 424, how should this code be fixed?
Code:
Private Sub CommandButton1_Click()
If Target.Column = 3 Then
    
    Target.Offset(0, 31) = UserForm1.TextBox1.Value
    Target.Offset(0, 32).Value = UserForm1.TextBox2.Value
    Target.Offset(0, 33).Value = UserForm1.TextBox3.Value
    Target.Offset(0, 35).Value = UserForm1.TextBox4.Value
End If
UserForm1.Hide
End Sub

Thanks for the help!
splucena
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
you haven't defined what Target is. You might use selection, activecell, or a defined range of some sort
 
Upvote 0

Forum statistics

Threads
1,203,026
Messages
6,053,110
Members
444,639
Latest member
xRockox

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