4,374 questions
Use:
With Sheets("Foglio1").Range("A1")
.Offset(.CurrentRegion.Rows.Count, 0).Value = "Text for new row in column A"
End With
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I have a .xlsx file on my computer. I need a vba to add 1 row in this file on onedrive business.
Thanks for support
Angelo
Use:
With Sheets("Foglio1").Range("A1")
.Offset(.CurrentRegion.Rows.Count, 0).Value = "Text for new row in column A"
End With