Hello,
Using PB 2017 SP3 Build 1880
[in a computed column in a datawindow]
I need to display a computed column with amount in Indian Format [ ##,##,##,##0.00 ] (See the comma). When I create the expression as
namecolumn + ' (' + String(groupbalance, '##,##,##,##0.00') + ')'
what I get is Income (987,654,321.90) instead of Income (98,76,54,321.90).
Anything should I do to display it correctly ?
Happiness Always
BKR Sivaprakash
Indian format is somehow different from international format. We have to separate 3 columns on right most side, then with 2 digits when moving towards left.
eg. 12,34,56,789.99
which will not work out with the format you suggested.