OK, got my code from my previous post working, here it is:
VB Code:
  1. Private Sub CmdSum_Click()
  2. Set Comm = Worksheets(2).Range("J12:J50")
  3. showComm = Application.WorksheetFunction.Sum(Comm)
  4.  
  5. Set Mort = Worksheets(2).Range("L12:L50")
  6. showMort = Application.WorksheetFunction.Sum(Mort)
  7.  
  8. Set Life = Worksheets(2).Range("M12:M50")
  9. showLife = Application.WorksheetFunction.Sum(Life)
  10.  
  11. Set Home = Worksheets(2).Range("N12:N50")
  12. showHome = Application.WorksheetFunction.Sum(Home)
  13.  
  14. Set Profit = Worksheets(2).Range("J12:N50")
  15. showProfit = Application.WorksheetFunction.Sum(Profit)
  16.  
  17. End Sub

I now want to use a Msgbox to make it look like this:

"Total Commission = (Comm)
Total Mortgage Fee = (Mort)
Total Life Fee = (Life)
Total Home Insurance = (Home)
Total Profit for the company = (Profit)"

Where the words in brackets are the variables from the above code, and formatted like above (a new line for each piece of info). Not done a lot with Msgboxes, so can anyone help?