Second row on message box

Copper Contributor

I am trying to have a second row on a message box. How can I achieve this please?

Msg = MsgBox("This action will clear the contents of this worksheet. Do you want to continue?")

I would like to see, "Do you want to continue on a second line?"

1 Reply
Msg = MsgBox("This action will clear the contents of this worksheet." & vbNewLine & "Do you want to continue?")