Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
id
12abc34
5abc345
6rtd45
678abc
abc123
tyu12
qwta3
7ytu8a
34abc45
May be this:
=Count({<id = {'*abc*'}>} id)
or
=Sum(If(WildMatch(id, '*abc*'), 1, 0))
Update: Sample attached
or
sum(if(SubStringCount(id,'abc')>0,1,0))
hi,
try
count({<id={"*abc*"}>}id)
Regards
Sunny your statement is wrong
=Sum(If(WildMatch(id, '*abc*', 1, 0))
These should be
=Sum(If(WildMatch(id, '*abc*'), 1, 0))
Thanks for pointing out, but I did notice my mistake and made the change
Best,
Sunny