Is there a way to aggregate a column that has a custom numerical format? For instance, let's say I want to display some leading zeros:
Formatted = FORMAT([Sales],"000000")
Now a Sales value of 123 has become 000123. When Sales is unformatted, I can aggregate it. Once it's formatted however, I cannot. Anyone know why this is or how to get around it?