hara
Cells, clear 본문
Sub add()
r = 2
c = 3
'셀 선택하기
Cells(r, c).Select
'셀에 내용 추가하기
Selection.Value = 100
End Sub
Sub clear()
Cells(2, 3).clear
End Sub
Sub bring()
Range("g3").Value = Range("a4").Value
End Sub
Comments
Sub add()
r = 2
c = 3
'셀 선택하기
Cells(r, c).Select
'셀에 내용 추가하기
Selection.Value = 100
End Sub
Sub clear()
Cells(2, 3).clear
End Sub
Sub bring()
Range("g3").Value = Range("a4").Value
End Sub