Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のVBA関数があります
Function ..... .......... If (IsNumeric(x) And ((x = "*9999999*") = False)) Then ....... Else ........... End If End Function
文字列に部分文字列「9999999」が含まれているかどうかを知る必要があります。これどうやってするの?
If Instr(x, "9999999") > 0 Then ...するべきです。
If Instr(x, "9999999") > 0 Then ...