need to figure a function that identifies the last cell with a value (could
be a number or a letter) in a column....I will be updating this every other
day, it should be able to identify the next cell if I add a value to the
column. for your help I am very thankfull.
Are there blanks?
If there are no blanks, you could use the COUNTA function to determine the
address.
For example, if your first entry is in A3, the address of the last cell with a
value could be given by the formula: =ADDRESS(2+COUNTA(A3:A65534),1)
If there might be blanks, you could use this formula:
=ADDRESS(MATCH(9.9E+307,1/(A:A<>"")*ROW(A:A)),1)
This formula must be **array-entered**:
----------------------------------------
To **array-enter** a formula, after entering
the formula into the cell or formula bar, hold down
<ctrl><shift> while hitting <enter>. If you did this
correctly, Excel will place braces {...} around the formula.
If you have a version of Excel prior to 2007, then change the formula so as not
to refer to an entire column.
e.g. instead of A:A, use A1:A65534
--ron