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.
谁能帮助我在 Excel VBA 中将单个整数值分配给多个变量的语法?
考虑:
Sub demo() Dim SingleValue As Integer, alpha As Integer, beta As Integer, gamma As Integer SingleValue = 12 alpha = SingleValue: beta = SingleValue: gamma = SingleValue End Sub