View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jeff C. Jeff C. is offline
external usenet poster
 
Posts: 1
Default Particular cell in Range

Reference the appropriate cell using:

cells(row,col)

Where Row and Col are integer values corresponding to the
cell you are referencing.

Example Cell b5 is cells(5,2)

-- Jeff