Excel Counting!!

S

slvtenn

How can i make an excel spread sheet, in a certain cell like G6, count
up one number from the number already entered in cell G6 everytime i
open that spread sheet? Any help would be greatly appreciated!!
 
D

Don Guillett

put the line in an auto_open macro in the ThisWorkbook module.

Range("g6") = Range("g6") + 1
 
Top