Forum Discussion
14 Replies
Sort By
- ArchiveUserQrew Captain=text(+[number],"$#,###.##") Sorry, left off the closing quotation mark.
- CarlosSantiagoQrew TraineeFYI - I was using this formula to display a discount (negative number) and it was dropping out the thousands place (i.e. instead of showing "-$1,500.00" it was showing "-$500". The way the Thousands variable is set up, it kicks in if the number is greater than 1,000. Well, it's also true if it's less than -1,000. I added the Abs function to get it to work:
var text Thousands =
If(Abs($Value)>=1000,ToText(Int(Abs($Value)/1000))); - LauraLaura1Qrew MemberHey there! I have some currency fields that will include dollar amounts in the millions, requiring more than one comma ($3,000,000.00 for example). Anyway there is something I can add to the above formula to make this work for those values?
- DanLadner1Qrew TraineeI believe you can simply use this formula at this point: https://login.quickbase.com/db/6ewwzuuj?a=dr&rid=188