reasonablenesscheck
New Member
- Joined
- Jul 2, 2009
- Messages
- 42
This code works, well kindof. If it is looking for ID 74578, it returns the FIRST INSTANCE of that number (Like 7457899) instead of the ACTUAL unique number I want.
How do I alter this code so it looks for the EXACT number?
One more thing...
All the values that have a ' in front of them...
These.
I want the values returned in RED PRINT, so that my the user knows they need to be changed. Obviously I can remove the ticks, to make the value returned, but how can I make them appear in red, and then go back to black after refreshing the form?
Thanks in advance.
How do I alter this code so it looks for the EXACT number?
Code:
Private Sub RecordR_Click()
'prompts user
'prompts user
Dim MyResponse As String
MyResponse7 = InputBox("Paste Record ID")
If MyResponse7 = "" Then
MsgBox "No Number Entered. Aborting.", vbCritical
Exit Sub
End If
'takes entry and searches for it and returns that row to the form
Dim strFind, FirstAddress As String 'what to find
Dim rSearch As Range, intRange As Range 'range to search
Dim ws1
Dim ws2
Dim Rng1 As Range
Dim Rng2 As Range
Dim Rng3 As Range
Dim RNG4 As Range
Dim RNG5 As Range
Dim cell As Range
WB1 = "Watar.xlsm"
ws2 = "DATA"
ws3 = "Miss Q Data"
Dim ws5 As Worksheet
Dim Found As Range
Dim AddressStr As String
Set ws5 = ActiveSheet
Set rSearch = Workbooks(WB1).Sheets(ws2).Range("F1:F" & Workbooks(WB1).Sheets(ws2).Range("F" & Workbooks(WB1).Sheets(ws2).Rows.Count).End(xlUp).Row)
strFind = MyResponse7 'what to look for
Dim f As Integer, strRange As Range
With rSearch
Set C = .Find(strFind, LookIn:=xlValues)
'if item not found then check Miss Q sheet
If C Is Nothing Then
MsgBox "The Discogs item number doesn't exist on DATA sheet."
cbodiscogs = MyResponse7
Me.cboartist.SetFocus
End If
If Not C Is Nothing Then 'found it
cbodiscogs = MyResponse7
Me.cboartist.Value = C.Offset(0, -5).Value
Me.cbotitle.Value = C.Offset(0, -4).Value
Me.cborecdescshort.Value = C.Offset(0, -3).Value
Me.cboreleaseno.Value = C.Offset(0, -2).Value
Me.txtstockno.Value = 1
'Me.txtprice.Value = C.Offset(0, 1).Value
'Me.cborecordcond = C.Offset(0, 2).Value
'Me.cbocovercond = C.Offset(0, 3).Value
'Me.cbocoverinfo = C.Offset(0, 4).Value
'Me.cbocondcomments = C.Offset(0, 5).Value
Me.cbogenre.Value = C.Offset(0, 6).Value
Me.txtyear.Value = C.Offset(0, 7).Value
Me.cbolabel.Value = C.Offset(0, 8).Value
Me.cbocountry.Value = C.Offset(0, 9).Value
Me.txtdescription.Value = C.Offset(0, 11).Value
Me.txtprice.SetFocus
End If
End With
Exit Sub
One more thing...
All the values that have a ' in front of them...
These.
Code:
'Me.txtprice.Value = C.Offset(0, 1).Value
'Me.cborecordcond = C.Offset(0, 2).Value
'Me.cbocovercond = C.Offset(0, 3).Value
'Me.cbocoverinfo = C.Offset(0, 4).Value
'Me.cbocondcomments = C.Offset(0, 5).Value
I want the values returned in RED PRINT, so that my the user knows they need to be changed. Obviously I can remove the ticks, to make the value returned, but how can I make them appear in red, and then go back to black after refreshing the form?
Thanks in advance.