I'm having the error "runtime error 1004 method range of object _global failed" when I launched the following macro :
Dim nameDebut As Range, nameFin As Range ' <- my global variable
sub mySub()
...
Set nameDebut = Range("A1").Offset(0, 1)
Set nameFin = Range("A1").Offset(0, 20)
Range("nameDebut:nameFin").Select ' <- fail occurs here
...
So I would like to select this range of cells like this. Is it possible ? Any workaround ?
Tx