LastRow = Cells.Find("*", [A1], , , xlByRows, xlPrevious).Row
works very well for finding the last row in a worksheet. But how can I tweak the line above to find the last row of column C?
I've tried
LastRow = Range("C:C").Find("*", [A1], , , xlByRows, xlPrevious).Row
but I get the error message Incompatible types