Trying to run a VBA that will sum up a column that could be any number in length. So I need it to search for the first empty cell and put the sum there. I can only get it to work as follows:
Range("K4").Select
Selection.End(xlDown).Select
Range("K19").Select
Application.CutCopyMode = False...