Line Continuation issue
What am I doing wrong? Here is the line of code:
Msg = MsgBox("You have "" "" PFs loaded in the Tally Sheet. Have you
completed "" ""PFs?", vbYesNo, "Completed PFs")
But I want to use ' _' to continue the phrase on the next line but when I do
this:
Msg = MsgBox("You have "" "" PFs loaded in the Tally Sheet. _
Have you completed "" ""PFs?", vbYesNo, "Completed PFs")
I keep getting "Expected: list separator or )"
|