there are quicker ways, but this should work (untested):
VB Code:
  1. 'this assumes xlSheet is an active Sheet object
  2.  
  3. Dim lRow as long, lCol as long
  4.  
  5. With xlSheet
  6.   '.Application.Visible = False     '(these will make it run faster)
  7.   '.Application.ScreenUpdating = False
  8.  
  9.   For lRow = 1 to .UsedRange.Rows.Count
  10.     For lCol = 1 to 8
  11.       '(you should probably check there is a number)
  12.       .Cells(lRow,lCol) = .Cells(lRow,lCol) + 1
  13.     Next lCol
  14.   Next lRow
  15.  
  16.   '.Application.Visible = True     '(restore)
  17.   '.Application.ScreenUpdating = True
  18. End With