Fin Fang Foom
Well-known Member
- Joined
- Mar 20, 2005
- Messages
- 598
I have this code below. It fills down that coresponds in coulmn A.
The problem is I would like to fill down M9:N in worksheet 2 that coresponds in worksheet 1 of column A.
Is that possible ?
The problem is I would like to fill down M9:N in worksheet 2 that coresponds in worksheet 1 of column A.
Is that possible ?
Code:
Sub Filldown()
x = Range("A65536").End(xlUp).Row
Range("M9:N" & x).FillDown
End Sub