I’m making course codes (like ACT015) from numbers (like 15) and prefixes like “ACT”. The trick is - how to left pad the numbers with 0 when combining them?
The part of the formula to add the right number of '0’s:
REPT(“0”, 3 - LEN(Number&""))
and th...