I have a formula which strings together various two text fields and a numeric field. I need the two text fields left justified and the numeric right justified. This is my formula:
{activity.Group} + {activity.Suffix} + ToText(Round({activity.Amount},2)*100,"##############"
And this works great for positive numbers. When a negative is thrown in, I get formatting like this:
00000000- 1000
where I would like to have:
00000000 -1000
Any ideas?
{activity.Group} + {activity.Suffix} + ToText(Round({activity.Amount},2)*100,"##############"
And this works great for positive numbers. When a negative is thrown in, I get formatting like this:
00000000- 1000
where I would like to have:
00000000 -1000
Any ideas?