Hi Guys
We have a text input, Formatted to be Number only , We wanted to format that number to currency, so we are using
Text( Value(Coalesce(txtCVFitOut.Text,"")), "[$-en-US]#,##0" )
This seems to work nicely, The issue is when the user hits the backspace, once the backspace reaches the first comma, It jumps a character to the left, and does not delete that character... the user has to hit right arrow and backspace again... to delete the full content...
Any ideas why this happens? or how to work around it? Thanks in advance