This may be a silly question, but I'm stumped and can't find an answer while searching.
Maybe I'm going about it the wrong way, so feel free to propose a different solution.
I have this formula cell u22
=VLOOKUP(T22,LineErrors,2,FALSE)
I am now trying to reference the result of that formula as a range in vba in this snippet.
Any help you can give is greatly appreciated... =)
Maybe I'm going about it the wrong way, so feel free to propose a different solution.
I have this formula cell u22
=VLOOKUP(T22,LineErrors,2,FALSE)
I am now trying to reference the result of that formula as a range in vba in this snippet.
Code:
If u22 <> "okay" Then
strPart = MsgBox(msg1 & [parterror].Value & msg2, vbExclamation, "Required Information Missing")
[u22.value].select
Exit Sub
End If
Any help you can give is greatly appreciated... =)