我想让我的一个案例是一个动态字符串,因为在我的表中,这些值部分改变了除了开始代码“2061”所以我如何让我的代码做一些类似于我在查询中查找时的事情“ ... 像 '2061%' 这是我的代码
Function GetResponse(val As String) As String
Select Case val
Case "2061"
Return "Opted Out"
Case "00"
Return ""
Case Else
Return "Other"
End Select
End Function