I use statements as
Worksheets("Cleaned").Names.Add Name:="Date_and_Time", RefersToR1C1:="=Cleaned!R2C1:INDEX(Cleaned!C1, COUNTA(Cleaned!C1))"
Worksheets("Cleaned").Names.Add Name:="Date", RefersToR1C1:="=Cleaned!R2C2:INDEX(Cleaned!C2, COUNTA(Cleaned!C2))"
Worksheets("Cleaned").Names.Add Name:="Month", RefersToR1C1:="=Cleaned!R2C3:INDEX(Cleaned!C3, COUNTA(Cleaned!C3))"
in VBA to define dynamic ranges.
Since I find strange (for me unexplicable) things during the execution of my VBA code I would like to see what is actual range of these ranges.
Example Date_and_Time is A1:a1021, Date is B2:b1021 etc.
Is there a way to do that?
Worksheets("Cleaned").Names.Add Name:="Date_and_Time", RefersToR1C1:="=Cleaned!R2C1:INDEX(Cleaned!C1, COUNTA(Cleaned!C1))"
Worksheets("Cleaned").Names.Add Name:="Date", RefersToR1C1:="=Cleaned!R2C2:INDEX(Cleaned!C2, COUNTA(Cleaned!C2))"
Worksheets("Cleaned").Names.Add Name:="Month", RefersToR1C1:="=Cleaned!R2C3:INDEX(Cleaned!C3, COUNTA(Cleaned!C3))"
in VBA to define dynamic ranges.
Since I find strange (for me unexplicable) things during the execution of my VBA code I would like to see what is actual range of these ranges.
Example Date_and_Time is A1:a1021, Date is B2:b1021 etc.
Is there a way to do that?