Decimal convert
Hello Expert,
I realy need help urgently. Currently i'm developing SAP Adobe form. User requirement on the Decimal display have 3 type based on the table on SAP. The 3 type of display is as below :
A) 1.234.567.89
B) 1,234,567,89
C) 1 234 567,89
I already Have a hidden field in the form which stores the decimal notation from SAP. Now the problem is I cannot convert it to the decimal> i try tu use few way as below :
If (formatValue eq "A")
then
$.rawValue = "num{zzzzzzz9.99
endif
and
If (formatValue eq "A")
then
$.rawValue = Format("num{zzzzzzz9.99" &.rawValue)
endif
but it seems not working. Can anybody help me out? I'm dying here..:(