Last not empty cell (column) in the given row; Excel VBA I have an excel sheet in which I need to find the last non empty cell in a specific row. How do I do this? The below will select this for me, but it will select the first not empty cell, I need the last not empty cell in the row #29. Worksheets("DTCs").Range("A29").End(xlToRight).SelectI have expanded on my comment above to provide solutio..