- ©«¤l
- 2842
- ¥DÃD
- 10
- ºëµØ
- 0
- ¿n¤À
- 2898
- ÂI¦W
- 0
- §@·~¨t²Î
- ¡e²¤¡f
- ³nÅ骩¥»
- ¡e²¤¡f
- ¾\ŪÅv
- 100
- ©Ê§O
- ¨k
- ¨Ó¦Û
- ¡e²¤¡f
- µù¥U®É¶¡
- 2013-5-13
- ³Ì«áµn¿ý
- 2025-4-28
|
Private Sub CommandButton1_Click()
Dim xB As Range, Arr
With Selection
If .Columns.Count > 1 Or .Column <> 10 Then Exit Sub
If Intersect(Me.UsedRange, .Cells).Address <> .Address Then Exit Sub
Set xB = Range(Replace(.Address, "J", "E"))
Arr = .Value
.Value = xB.Value
xB.Value = Arr
End With
End Sub |
|