LibreOffice 7.2 Help
λΉκ΅ μ°μ°μλ λ μμ λΉκ΅ν©λλ€. κ²°κ³Όλ λΉκ΅κ° True(-1) λλ False(0)μΈμ§ μ¬λΆλ₯Ό νμΈνλ λΆλ¦¬μΈ μμΌλ‘ ꡬν΄μ§λλ€.
Result = Expression1 { = | < | > | <= | >= } Expression2
Result: λΉκ΅ κ²°κ³Ό(True λλ False)λ₯Ό μ§μ νλ λΆλ¦¬μΈ μμ λλ€.
Expression1, Expression2: λΉκ΅ν μμμ μ«μ κ° λλ λ¬Έμμ΄μ λλ€.
= : κ°μ
< : λ³΄λ€ μμ
> : λ³΄λ€ νΌ
<= : μκ±°λ κ°μ
>= : ν¬κ±°λ κ°μ
<> : κ°μ§ μμ
Sub ExampleUnequal
Dim sFile As String
DIM sRoot As String REM ' Root directory for file in and output
sRoot = "c:\"
sFile = Dir$( sRoot ,22)
If sFile <> "" Then
Do
MsgBox sFile
sFile = Dir$
Loop Until sFile = ""
End If
End Sub