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.
dim g as int, i as string range("a1").value = i g = 10 range("b1").value = i + g
A1 = 1 とします B1 = 11 を期待しますが、10 です
i はString var ("1") であるため、..
range("b1").value = val(i) + g