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

Sheet title should be in the middle

Champs,

My Requirement is all the Title length(Space should be same).For that I have given title for AR with left spacing,But i want AR exactly in the middle .Now it is showing extreme right side .

Sheet Title.png

Can u pls suggest me the Some better solution.

In Advance

Thank you

1 Solution

Accepted Solutions
settu_periasamy
Master III
Master III

Hi,

Try like

=Repeat(' ',10)&Repeat(chr(8203),10)& 'AR' &Repeat(chr(8203),10)&Repeat(chr(160),10)

Instead of space in repeat, you can give your length of title..

View solution in original post

2 Replies
settu_periasamy
Master III
Master III

Hi,

Try like

=Repeat(' ',10)&Repeat(chr(8203),10)& 'AR' &Repeat(chr(8203),10)&Repeat(chr(160),10)

Instead of space in repeat, you can give your length of title..

Anonymous
Not applicable
Author

Thanks you