A1에 저장된 값이 10보다 크면 "x is greater than 10"을, 작거나 같으면 "x is less than or equal to 10"을 B1에 출력합니다. If 문을 사용하여 분기 처리를 수행합니다. 이외에도 다양한 VBA 코드를 작성하여 엑셀에서 자동화 작업을 수행할 수 있습니다. Sub Branching() Dim x As Integer x = Range("A1").Value If x > 10 Then Range("B1").Value = "x is greater than 10" Else Range("B1").Value = "x is less than or equal to 10" End If End Sub