View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
Ken Johnson Ken Johnson is offline
external usenet poster
 
Posts: 1,073
Default Determine the text in a range that covers several cells


Hi Scott,

Try one cell at a time...

Sheet1.Range("LName").Value = "Anderson" makes all 3 cells = "Anderson"

To check...

MsgBox Sheet1.Range("LName").Cells(1,1).Value will return "Anderson"
as will Sheet1.Range("LName").Cells(2,1).Value and
Sheet1.Range("LName").Cells(3,1).Value

Ken Johnson