Hello,
I have a button to execute the following macro.
I would like to know how to replace and use a user form(using listbox) instead.
Any help, please?
I have a button to execute the following macro.
I would like to know how to replace and use a user form(using listbox) instead.
Any help, please?
Code:
Sub test()
For Each row In ........
If row.Offset(, 6) = .......
If IsError........
msg = msg & row.Value & vbTab & ..........
End If
End If
Next
MsgBox "C1" & vbTab & "C2" & vbTab & "S1" & vbNewLine & msg
End Sub