MS Access: Case Statement
MS Access में Case Statement का प्रयोग Nested If condition के स्थान पर किया जाता है। Nested If condition में गलती की संभावना हो सकती है साथ ही इसे लिखना थोड़ा मुश्किल होता है। जबकि Case Statement से इस कार्य को आसानी से किया जा सकता है।
MS Access में Case Statement का प्रयोग VBA code editor में किया जा सकता है। इसे फॉर्म, रिपोर्ट, function, module से भी प्रयोग किया जा सकता है।
Syntax:
Select Case <test_expression>
Case <condition_1>
result_1/statement_1
Case <condition_2>
result_2/statement_2
...
Case <condition_n>
<result_n>
[ Case Else
result_else/ statement ] 'default results
End Select
Example:- working with string.
Dim test, result as string
test ="E" Select Case test
Case "N"
result = "North"
Case "S"
result= "South"
Case "E"
result = "East"
Case "W"
result = "West"
End Select
----------------------------------------------------------
Example:- working with string.
Dim test, result as string
test ="E" Select Case test
Case "N"
result = "North"
Case "S"
result= "South"
Case "E"
result = "East"
Case "W"
result = "West"
End Select
----------------------------------------------------------
0 Comments
Post a Comment