ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Help with code please? (https://www.excelbanter.com/excel-programming/355838-help-code-please.html)

Greg B[_8_]

Help with code please?
 
Hi all,
I am looking for help on this code, I have a userform where it looks up a
number and give the information on the person associated with this number.
Here is the code for this.

Private Sub ComboBox1_Change()
Dim ans

On Error Resume Next


ans = Application.Match(CLng(ComboBox1.Text), Range("A:A"), 0)
If Not IsError(ans) Then
Label1.Caption = Application.Index(Range("b:b"), ans)
Label2.Caption = Application.Index(Range("c:c"), ans)
Else
MsgBox "Invalid code"
End If
On Error GoTo 0

End Sub

I have included a 5 textboxes, textbox1 etc and I want the userform to have
a commandbutton when it is pressed to have the information in the textboxes
to be put in to columns E to I in order textbox1 to "e" etc. I have no
idea how to do this.

Thanks

Greg



Ardus Petus

Help with code please?
 
,---------------------------------------------
Private Sub ComboBox1_Change()
Dim ans

On Error Resume Next


ans = Application.Match(CLng(ComboBox1.Text), Range("A:A"), 0)
If Not IsError(ans) Then
Label1.Caption = Cells(ans, "B")
Label2.Caption = Cells(ans, "C")
Else
MsgBox "Invalid code"
End If
On Error GoTo 0

End Sub
'---------------------------------------------

HTH
--
AP

"Greg B" a écrit dans le message de
...
Hi all,
I am looking for help on this code, I have a userform where it looks up a
number and give the information on the person associated with this number.
Here is the code for this.

Private Sub ComboBox1_Change()
Dim ans

On Error Resume Next


ans = Application.Match(CLng(ComboBox1.Text), Range("A:A"), 0)
If Not IsError(ans) Then
Label1.Caption = Application.Index(Range("b:b"), ans)
Label2.Caption = Application.Index(Range("c:c"), ans)
Else
MsgBox "Invalid code"
End If
On Error GoTo 0

End Sub

I have included a 5 textboxes, textbox1 etc and I want the userform to

have
a commandbutton when it is pressed to have the information in the

textboxes
to be put in to columns E to I in order textbox1 to "e" etc. I have no
idea how to do this.

Thanks

Greg





Greg[_27_]

Help with code please?
 
Sorry I have reposted it please ignore

greg
"Greg B" wrote in message
...
Hi all,
I am looking for help on this code, I have a userform where it looks up a
number and give the information on the person associated with this number.
Here is the code for this.

Private Sub ComboBox1_Change()
Dim ans

On Error Resume Next


ans = Application.Match(CLng(ComboBox1.Text), Range("A:A"), 0)
If Not IsError(ans) Then
Label1.Caption = Application.Index(Range("b:b"), ans)
Label2.Caption = Application.Index(Range("c:c"), ans)
Else
MsgBox "Invalid code"
End If
On Error GoTo 0

End Sub

I have included a 5 textboxes, textbox1 etc and I want the userform to
have a commandbutton when it is pressed to have the information in the
textboxes to be put in to columns E to I in order textbox1 to "e" etc. I
have no idea how to do this.

Thanks

Greg





All times are GMT +1. The time now is 05:55 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com