Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先感谢您查看问题,非常感谢您的帮助。
我的问题:我有 9 个字符串变量,如果存在值,我希望这些变量显示在“汇总”字符串中以显示内容。所以我期望我需要多个 If 语句来涵盖所有可能的结果。
例如,如果变量 a= "12/11/11" 和 b ="" c="21/12/12 d= "12/03/11" e ="" 和 f="11/12/13
我有一个显示这些值的 roundUp 字符串变量,但前提是它们有内容。所以我需要照顾所有的组合。最好的方法是什么?
谢谢
如果我正确理解您的问题,您想要检查 9 个变量的状态,然后将它们全部“汇总”到一个字符串变量中输出,在这种情况下,您想要连接输出变量。像下面这样的东西应该可以工作(并且可能有一个更优雅的解决方案)
昏暗的综述
综述=“”
If a="12/11/11" Then Roundup = Roundup + " A value mapped" End if
If b="" Then Roundup = Roundup + " B 值被困" End If
.. 等等...