J
James
Should be a simple question...not sure why this ISN'T having a problem:
For x = 1 to 5
Dim y
Next
Shouldn't that fire a "Name Redefined" error the way this does:
For x = 1 to 5
Dim y
Next
Dim y
For x = 1 to 5
Dim y
Next
Shouldn't that fire a "Name Redefined" error the way this does:
For x = 1 to 5
Dim y
Next
Dim y