'목록하단 광고 치환자(withSeok)
728x90

복사, 붙여넣기 (값만, 수식만, 서식만 등등)

엑셀 파일 다운로드

PasteSpecial, xlPasteValues, xlPasteFormulas, xlPasteFormats, copy.xlsm
0.05MB

Sub 초기화()
    Range("c20").CurrentRegion.Clear
        '완전지우기
    Range("r8:s17").Formula = ""
        '수식만지우기
    Range("a1").Copy
    Range("l23:s25").PasteSpecial xlPasteFormats
    카피취소
End Sub

Sub 카피취소()
    Range("a1").Select
    Application.CutCopyMode = False
End Sub

Sub 붙여넣기_수식그대로()
    초기화
    Range("c7").CurrentRegion.Copy
    Range("c20").PasteSpecial
    카피취소
End Sub

Sub 붙여넣기_값만()
    초기화
    Range("c7").CurrentRegion.Copy
    Range("c20").PasteSpecial xlPasteValues
    카피취소
End Sub

Sub 붙여넣기_수식만()
    초기화
    Range("r6:s6").Copy
    Range("r8:s17").PasteSpecial xlPasteFormulas
    카피취소
End Sub

Sub 붙여넣기_서식만()
    초기화
    Range("l20:s20").Copy
    Range("l23:s25").PasteSpecial xlPasteFormats
    카피취소
End Sub

 

728x90

+ Recent posts