Hi
Use the new function in the view.
I want do select all test, where %TestName% start with 10.25.75 that will say all 255 addr.
Is there some wild card I can use??
'%TestName%'=='10.25.75.'
'%TestName%'=='10.25.75.' I miss some wild card?
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
There no wildcards you can use. However, you may use expression like this one:
Regards,
Max
Code: Select all
('10.25.75.' in '%TestName%')
Max