I\'m trying to draw down the formula that\'s in cell M3 to the end of the data set.
I\'m using column L as my base to determine the last cell with data. My formula i
For people with a similar question and find this post (like I did); you can do this even without lastrow if your dataset is formatted as a table.
Range("tablename[columnname]").Formula = "=G3&"",""&L3"
Making it a true one liner. Hope it helps someone!