QP School

Full Version: Writing data with VBA
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Description:

You can write data to cells using the Value property.

Example:

Sub ExampleWritingData()
    Range("A1").Value = "Hello, Excel!"
End Sub