Good day I have a table with data, one of the columns have a number (There are repeating numbers) and the other column has letters and the last column has the feedback.
My entries change every day and I want to have one space where I can put today's Number, letter and feedback and then create a button that looks for the letter and number in the table and posts the feedback
Data Table:
Number Letter Feedback Todays Number Todays letter Todays Feedback
1 A 3 B 100
1 B
2 A
2 B
3 A
3 B
4 A
4 B
5 A
5 B
There is a similar problem posted on stack overflow and I tried to use a similar method, but this only works for searching against one criteria:
I have the following:
Private Sub CommandButton1_Click()
Dim MatchFormula As Long
MatchFormula = WorksheetFunction.Match(Range("Number"), Range("A:A"), 0)
Range("c" & MatchFormula).Value = Range("f2").Value
End Sub
Please assist