I wish to display a message box, only if a query returns results. I would have it on the OlLoad portion of my form. The problem I am having is doing the sql in the vba portion of the code...it would look something like this:
sql = "select * from table"
if results of sql are not blank, then
msgbox("hello")
end if
Can someone help me please?
sql = "select * from table"
if results of sql are not blank, then
msgbox("hello")
end if
Can someone help me please?