For example, how to count the number of line names with the first character of the name?
Thanks!
If I understand correctly what you want to do (calculate character count for the first character in name) you could do it with something like this:
Length(:name)Substitute(:name, Left(:name, 1), "")Length(previous part)
Length(:name) - Length(Substitute(:name, Left(:name, 1), ""))
If I understand correctly what you want to do (calculate character count for the first character in name) you could do it with something like this:
Length(:name)Substitute(:name, Left(:name, 1), "")Length(previous part)
Length(:name) - Length(Substitute(:name, Left(:name, 1), ""))
Clever! (And comment your code if you use this, the next person will appreciate explaining what you are doing!)