butterboxbaby14
New Member
I have created this userform to be used for auditing cases. I have attached a sample. I have the form working for the data entry, however, when using the modify/edit function in pulling up existing cases it gives me the "Unable to get match properly in worksheet function class" error. I have used the same string of command before and it worked on a different sheet.
>>> use code - tags <<<
It worked for me from the past not sure what is wrong with it? Please help.
Also, in the actual userform, I would like to have the Score Achieved to display the current score being taken by the agent and it should be interactive. Example, if he get a 5 on the first attribute with a weight of 5, Score Achieved would display 100%. And it goes along as you go down each attribute, would this be possible?
Thanks to whoever can help me.
>>> use code - tags <<<
Code:
Private Sub Command_Search_Click()
Dim iRow As Integer
iRow = Application.WorksheetFunction.Match(text_Search, Sheets("Data").Range("G2:G1000"), 0)
MsgBox iRow 'just to check if the above works but it does not
End Sub
It worked for me from the past not sure what is wrong with it? Please help.
Also, in the actual userform, I would like to have the Score Achieved to display the current score being taken by the agent and it should be interactive. Example, if he get a 5 on the first attribute with a weight of 5, Score Achieved would display 100%. And it goes along as you go down each attribute, would this be possible?
Thanks to whoever can help me.
Attachments
Last edited by a moderator: