> I just figured somewhere along the way, there would be an option/check-box, short code, etc that changed the format to include commas in numbers that were greater than 3 digits.
Did you look at AllenR's example?
> Set text to RegexReplace( str(int(num)), "(\d)(?=(\d{3})+(?!\d))", "g", "$&,")
> -> Text: Append "."
-> Text: Append int(abs(num)×10)%10
-> Text: Append round(abs(num)×100)%10
I don't quite understand how it works. more precisely, I did not understand how it works at all. but it works! thank you!!!