Hi,

I know this is basic, but I can't get it to work!!

I am trying to insert numbers into the spreadsheet.

Code:

Sub TestPrint()
   Sheets("Sheet3").Select
   Range("A2").Select
   ActiveCell.Value = 5
    
End Sub
The books I have looked at show how to display numbers into a message box!

Also, does the formatting matter in the VBA Editor? Does an extra leading space here or there make a difference?

If I build an array in VBA, how do I display that on the worksheet? It will be 100 x 3 in size.

Thanks