1. 먼저 새문서를 만들다 2. Alt+F11 눌러 매크로 편집기 실행 3. 모듈 추가 4. 매크로 함수 넣기 예제Function TTV(strChr As String) As Double Dim i As Integer Dim j As Integer Dim newStr As String Dim strTemp As String i = Len(strChr) If i = 0 Then Exit Function For j = 1 To i strTemp = Mid(strChr, j, 1) Select Case strTemp Case "+", "-", "*", "/", "(", ")", "^", "." newStr = newStr & strTemp Case "×" newStr = newStr & "*" Case "{"..