Hi,
I have been fiddling around with this but am missing something in my excel logic... Maybe someone can spot what is missing.
This formula works to find the row number of the last cell with text in column A:
This formula counts the number of cells in column B that are nonblank between B2 and B20:
Here's my attempt at combining them to create a range based on the last cell with text in column A:
Any thoughts?
AMAS
I have been fiddling around with this but am missing something in my excel logic... Maybe someone can spot what is missing.
This formula works to find the row number of the last cell with text in column A:
Code:
=MATCH("*",A:A,-1)
This formula counts the number of cells in column B that are nonblank between B2 and B20:
Code:
=COUNTA(B2:B20)
Here's my attempt at combining them to create a range based on the last cell with text in column A:
Code:
=COUNTA(B2:B&(MATCH("*",A:A,-1)))
Any thoughts?
AMAS