May sounds like a duplicate but ive havent seen the exact same one with my research.
This is a really simple question (BigBen may answer it super quicly in comment ;) )
Ive been told .select
and .activate
was to avoid, havent had time to look why for and so dont understand as well how to use it and when (il look at it and try to understant dw).
Whats better bewteen 1 activate :
Sheets("Vendredi jour").Select
Cells(15, 38).Value = B
Cells(15, 39).Value = C
Cells(15, 40).Value = D
Cells(15, 41).Value = E
Cells(15, 42).Value = F
Cells(15, 43).Value = G
and worksheet specified on every entry
Worksheets("Vendredi jour").Cells(15, 38).Value = B
Worksheets("Vendredi jour").Cells(15, 39).Value = C
Worksheets("Vendredi jour").Cells(15, 40).Value = D
Worksheets("Vendredi jour").Cells(15, 41).Value = E
Worksheets("Vendredi jour").Cells(15, 42).Value = F
Worksheets("Vendredi jour").Cells(15, 43).Value = G
Thx