When sometime a float value just contains just whole number, for example, 123.00, what's the correct way of printing it out as "123.00" instead of "123"?
TIA
B4X:
Dim value As Float=123.00
LogColor($"$1.2{value}"$, Colors.Blue) 'printed: 123, 'No trailing ".00" is logged. expected: 123.00
value=123.456 'this value works
LogColor($"$1.2{value}"$, Colors.Blue) 'printed 123.46 expected 123.46
TIA