My code below is run from ThisWorkbook. It opens up wb_gr (already done), and I'm trying to do a AutoFill in sheet "sh_9_overtid_år" from D3 and down to end of last used cell in row A. Code is working, but I want to get rid of all .activate and .selcet, and run it with sheets hidden. But I haven't got the skills to pull it off... Anyone that can help me with how to modify this bit of code?
wb_gr.Activate
sh_9_overtid_år.Select
Range("D3:D3").Select
lr = Range("A" & Rows.Count).End(xlUp).Row
Selection.AutoFill Destination:=Range("D3:D" & lr), Type:=xlFillDefault