vba for loop continue next的相關文章
VBA - how to conditionally skip a for loop iteration - Stack Overflow

VBA - how to conditionally skip a for loop iteration - Stack Overflow

瀏覽:965
日期:2024-08-03
VBA does not have a Continue or any other equivalent keyword to immediately jump to the next loop iteration. I would suggest a judicious use of Goto as a workaround, especially if this is just a contrived example and your real code is more complicated: Fo...看更多