Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how to count the char, how many times in the field.
Ex: ('abcd,efgh,ijklm,nopqrs,tuvwxyz',',') i want Result 4
('abcd,efgh,ijklm,nopqrs,tuvwxyz','a') i want result 1
Thanks,
Muni
Hi Muni,
=SubStringCount('abcd,efgh,ijklm,nopqrs,tuvwxyz',',') -> will return 4
=SubStringCount('abcd,efgh,ijklm,nopqrs,tuvwxyz','a') -> return 1
Regards,
Sokkorn
We are not geeting you Please explore what need to ask
Hi Muni,
=SubStringCount('abcd,efgh,ijklm,nopqrs,tuvwxyz',',') -> will return 4
=SubStringCount('abcd,efgh,ijklm,nopqrs,tuvwxyz','a') -> return 1
Regards,
Sokkorn
Sokkorn is correct
Hi Mathew,
Let Inde=IndexLet Inde1=Index('abcd,efgh,ijklm,nopqrs,tuvwxyz','a');
Let Inde1=Index(''abcd,efgh,ijklm,nopqrs,tuvwxyz','a',1);
Let Inde2=Index(''abcd,efgh,ijklm,nopqrs,tuvwxyz','a',2);
Hope this will help you
Regards,
DJ
Hi All,
Sokkorn answer is correct
Thanks to all.
Muni