我需要将以下Excel公式放在Macro:= I2& RIGHT(V2,4)中。换句话说,我想将一个单元格的值与另一个单元格连接起来,我想从中取出最后4位数字。
E.g
cell 1 81629895;
cell 2 P9429
=>result : 816298959429
答案 0 :(得分:0)
这与公式没什么不同。
myVar = mySheet.Cells("I2") & Right(mySheet.Cells("V2"), 4)
答案 1 :(得分:0)
要从单元格中获取值,请使用Range()。Value函数。 要从字符串中提取最后4个字符,请使用RIGHT()。 连接只是在你的值之间插入&符号(&)。
str = Range("I2").Value & right(Range("V2").Value, 4)