제가 여기저기 다니다 보니까
다음과 같은 메크로로 해보니 상대가 절대로 변하는데 반대로 변하고 싶습니다.
수정 좀 해주세요
Sub Relative2Absolute()
'
' Relative2Absolute Macro
'
For Each c In Selection
If c.HasFormula = True Then
c.Formula = Application.ConvertFormula(c.Formula, xlA1, xlA1, xlAbsolute)
End If
Next c
End Sub
다음검색