I need to cut cells from H2:L2 to all the way down and paste it in last row of column B.
Data will be different everytime so I cannot hard code any range.
VBA code would be nice, to cut from H2:L2 down and paste/insert in the last row of Column B.
So far I got.
Range("H2:L2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Cut
Here is a segment of code that should accomplish what you are looking for.
There are a number of books that will help with this type of coding and have step by step trainig. I am partial to the series published by Microsoft “Step by Step” series. Best of luck!