Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Format Total

Hi,

two table-chart with different total mode. How can i format total in table-chart two on right side with correct format.

Regards Stefan

1 Solution

Accepted Solutions
stigchel
Partner - Master
Partner - Master

See attached, changed the label expression and in the presentation tab set the orientation to right

View solution in original post

10 Replies
maleksafa
Specialist
Specialist

didn't get you, what is the desired output?

fvelascog72
Partner - Specialist
Partner - Specialist

I undertand you want 1.250 instead 1,250

In expression use:

= 'Total ' & Num(Sum(Value),' #.##0')

In script you must change:

SET ThousandSep='.';

SET DecimalSep=',';

buzzy996
Master II
Master II

from presentaion tab--select ur field--set alignment as Right

Anonymous
Not applicable
Author

Thanks, Total 1.250 is on left side in column and I need Total 1.250 on right side.

stigchel
Partner - Master
Partner - Master

See attached, changed the label expression and in the presentation tab set the orientation to right

awhitfield
Partner - Champion
Partner - Champion

Hi Stefan,

Change the Label From

= 'Total ' & Num(Sum(Value),' #,##0.', '.', ',')

TO:

= 'Total ' & Num(Sum(Value),'#.##0', ',', '.')

Just swapping the decimal and thousand seperators round

Andy

buzzy996
Master II
Master II

apply the above technique.

buzzy996
Master II
Master II

hey,whr is the orentaion in presentaion tab? very funny...

Anonymous
Not applicable
Author

Values should be on right side, strings without values on left side!