I cannot make this line work:
Range(Cells(Jour, 13), Cells(Jour, 18)).Interior.Color = 7
Each time this error message pop-up
Run-time error '1004': Application-defined or object defined error
But This line work:
Range(Cells(Jour, 13), Cells(Jour, 18)).Select
I saw lots of example with Interior.Color = "Whatever"
after range.
Why it doesn't work?
Thank you