EXCEL VBA中跳转语句 求教高手
答案:2 悬赏:60 手机版
解决时间 2021-04-01 04:24
- 提问者网友:伴风望海
- 2021-03-31 14:43
EXCEL VBA中跳转语句 求教高手
最佳答案
- 五星知识达人网友:北方的南先生
- 2021-03-31 16:10
.....
FistLine: if..... then
...
Count_1 = 1
...
goto NextLine
end if
...
if Count_1 = 1 then
...
goto FistLine
end if
NextLine: ....
将你说的情况 答案附上,使用行号即可解决,谢谢!
FistLine: if..... then
...
Count_1 = 1
...
goto NextLine
end if
...
if Count_1 = 1 then
...
goto FistLine
end if
NextLine: ....
将你说的情况 答案附上,使用行号即可解决,谢谢!
全部回答
- 1楼网友:持酒劝斜阳
- 2021-03-31 16:59
用过程方式:
sub if1()
if ...... then
Count_1 = 1
if2 Count_1
end if
end sub
sub if2(cc as integer)
if cc=1 then
.........
if1 '返回第一个
end if
end if
sub if1()
if ...... then
Count_1 = 1
if2 Count_1
end if
end sub
sub if2(cc as integer)
if cc=1 then
.........
if1 '返回第一个
end if
end if
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯