Mega Code Archive

 
Categories / VisualBasic Script / Excel
 

To enter the name Florence into cell C10, you assign the name to the Value property of the Range object

Sub valueDemo()      Range("C10").Value = "Florence" End Sub