I have the following code:
Last_Column = 0
On Error Resume Next
Last_Column = Sheets("Combined").Cells.Find("", [a1],, , _
xlByColumns, xlPrevious).Column
When the sheet has no data it returns Run time error '91': Object variable or With block variable not set,
How can I get it to continue, or what do I have to do?