LibreOffice 24.8 Help
두 값을 곱합니다.
Result = Expression1 * Expression2
Result: 곱셈 결과를 기록하는 임의의 숫자 식입니다.
Expression1, Expression2: 곱하려는 임의의 숫자 식입니다.
Sub ExampleMultiplication1
    Print 5 * 5
End Sub
 
Sub ExampleMultiplication2
Dim iValue1 As Integer
Dim iValue2 As Integer
    iValue1 = 5
    iValue2 = 10
    Print iValue1 * iValue2
End Sub