VBA MOD01 Defining Variables

 


Sub DeclaringVarible()

    Dim LastRow As String, Data As String

    Data = Range("A1").CurrentRegion.Cells(1.1).Value

    LastRow = Rows.Count

    

    

    Debug.Print LastRow

    Debug.Print Data

    

End Sub




Comments

Popular posts from this blog

introduction to python CH 01

Day 02 Python - data types , Numbers , Operations , Type Conversions , f-Strings

CH02