After my fruitless searching for an answer, you’re my only hope!
I wonder if anyone knows if it’s possible to combine specifiers for a ToString()? I want to re-format a float (always < 10) to a 2-digit integer. So I want to do ToString(“F0”) and ToString(“D2”). Of course I can solve it by some modification of the value, I just wonder if there’s a way to get away with not doing so.