View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Rick Rothstein \(MVP - VB\)[_564_] Rick Rothstein \(MVP - VB\)[_564_] is offline
external usenet poster
 
Posts: 1
Default Assign Cell Values without a Loop

Range("B2:10").value = "abc"

Typo alert... Bob accidentally left out the column designation for the
ending cell of the range...

Range("B2:E10").Value = "abc"

Rick