AX 2012: Convert string to TitleCase using str2CapitalWord function
Views (1696)
Requirement: Show customer name on report in TitleCase e.g. faisal fareed should display as Faisal Fareed
Solution: str2CapitalWord function does the trick and accomplished the requirement.
input string: "faisal fareed"
output string: "Faisal Fareed"
P.S. There is another function str2Capital which just converts the first letter of the first word e.g. "faisal fareed" will be converted to "Faisal fareed"
Solution: str2CapitalWord function does the trick and accomplished the requirement.
input string: "faisal fareed"
output string: "Faisal Fareed"
P.S. There is another function str2Capital which just converts the first letter of the first word e.g. "faisal fareed" will be converted to "Faisal fareed"
This was originally posted here.

Like
Report
*This post is locked for comments