I've imported data from an Excel file into a PowerApp. One of the columns is called "SectionNumber" and it may be a 1, 2 or 3 digit number or a single text character. I want to format this such that if it's a number, it's always displayed as 3 digits, with leading zeroes as needed (e.g.: "1" would display at "001").
The formula I'm using for this is:
Text(SectionNumber,"[$-en-US]000")
I've also tried varying combinations of # and 0 inside the double quotes, but none are producing the output I want. What am I doing wrong here?