I am trying to use a Select Case but have come across what does not appear to be handled well. Can some one confirm how this should be handled or should I just use a IF...Then
What I want is if the Description contains the word "KIT" then that case is selected otherwise it moves on.
Description = "KIT,MEDIA, ACTIVATED CARBON FILTER"
Select Case Description
Case "KIT"
Test = "Install & Commish"
Case Else
test = "Labor"
End Select
What I want is if the Description contains the word "KIT" then that case is selected otherwise it moves on.
Description = "KIT,MEDIA, ACTIVATED CARBON FILTER"
Select Case Description
Case "KIT"
Test = "Install & Commish"
Case Else
test = "Labor"
End Select