I'm looking at the excel exploit that can bypass the sheet protection in a matter of seconds. They use a nested for loop similar to the first code snippet i was wondering if
This:
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
'code'
Next: Next: Next:
is the same as this:
For i = 65 To 66
For j = 65 To 66
For k = 65 To 66
'code'
Next
Next
Next
Any help is appreciated.