I have part of my VBA code below:
Range("W82:X88").Select
Selection.AutoFill Destination:=Range("W82:X5500")
Range("W82:X5500").Select
How can I make the selected range autofill to the last row? Data may contain more or less than 5,500 entries and I would like to make the code more dynamic.
Range("W82:X88").Select
Selection.AutoFill Destination:=Range("W82:X5500")
Range("W82:X5500").Select
How can I make the selected range autofill to the last row? Data may contain more or less than 5,500 entries and I would like to make the code more dynamic.