Is there any opportunity to format a number with a leading plus? (apply a number style?)
like in excel => +#.##0;-#.##0
i.e.
+212
-500
-123
+1.132
or percent
+1,7 %
-0,4 %
...
Of course I could concat a '+' in the SQL statement if the value is greater than 0, but I would lose the default format (thousand sep., right alignment, etc.)
Any suggestions?