เมื่อกดปุ่ม แล้วให้ค่าไปวางอยู่ใน cell ที่ต้องการ
Posted: Mon Nov 22, 2010 11:39 am
ทำยังไงค่ะ ให้เวลาเรากดปุ่ม ให้นำค่าใน A1 A2 A3 ไปวางไว้ที่ B1 B2 B3
ฟอรัม Excel, VBA และอื่นๆ ของคนไทยเพื่อประโยชน์ของทุกคนในจักรวาล (Forum Excel, VBA and others of Thai people for everyone in the universe.)
http://snasui.com/
Code: Select all
Sub PasteValue()
[B1] = [A1] : [B2] = [A2] : [B3] = [A3]
End Sub