I want to make a macro that copy's the first and last column to another sheet. I have made a recorded macro that selects column A and L in one sheet called Saldobalanse RHB input and copies them to the sheet: Saldobalanse RHB. The problem with this is that the numbers I need do not ALWAYS appear in the column L, sometimes it is in K or J. That's why I would like to copy the first and the last column - wherever the placement is. Could someone help me edit my recorded macro to fit this? Please and thank you so much in advance.
Sub Makro6()
Makro6 Makro
Range("A:A,L:L").Select
Range("L1").Activate
Selection.Copy
Sheets("Saldobalanse RHB").Select
Range("A1").Select
ActiveSheet.Paste
End Sub