我有以下代码:
Application.FollowHyperlink Right(rst.Fields("Sagsnr"), Len(rst.Fields("Sagsnr")) - 9)
现在我必须检查右键= -9和右键= -13
的链接 Application.FollowHyperlink Right(rst.Fields("Sagsnr"), Len(rst.Fields("Sagsnr")) - 13)
我有办法让它同时做到吗?
我希望你们理解我的问题。
答案 0 :(得分:2)
如果您在Sagsnr中的值始终以AEMA-或T-开始并且具有固定长度,则可以在执行parallel
之前评估Sagsnr的值,以设置Application.FollowHyperlink
函数的偏移量。是。您需要在下面的代码中调整偏移值,以确保它们对于每种类型都是正确的。
Right()