filmov
tv
Excel VBA Cells Select - Code Included
Показать описание
Grab the Free VBA Quick Reference Guide
How do you Select a Cell in VBA? This video will show you how.
Code
==================
Sub SelectCells()
x = 1
Cells(10, 3).Select
Cells(10, x).Activate
'Sheet3.Select
'Sheet3.Cells(10, 1).Select
End Sub
How do you Select a Cell in VBA? This video will show you how.
Code
==================
Sub SelectCells()
x = 1
Cells(10, 3).Select
Cells(10, x).Activate
'Sheet3.Select
'Sheet3.Cells(10, 1).Select
End Sub