I would like to ask about your experience with defining a named range in Excel.
I'm normally using this formula:
=OFFSET(Sheet!$A$1;0;0;COUNTA(Sheet!$A:$A);COUNTA(DATA!$1:$1))
This works great for a dynamic range. It modifies once you add rows or columns to the original table. Problem appears once some data are input outside of the table in column A or row 1 in this case.
Then I thought Range("A1").CurrentRegion.Address
in a UDF will do the job. But this command is skiped in a UDF... as it doesn't work only with the cell which contains the formula, I guess.
Anyone using some formula or UDF which is more robust?