• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to get rid of additional space in the header row.

Jagdev Singh

Active Member
Hi Experts,

Is there any easier way to get rid of additional space available in the headers of the attached sheet.

Regards,
JD
 

Attachments

  • Book2.xlsx
    10.5 KB · Views: 9
These are by no means better, but here are two formulas if CHAR(10) is always the first character:
=IF(LEFT(A1,1)=CHAR(10),MID(A1,2,9^9),A1)
=MID(A1,SEARCH(CHAR(10),A1)+1,9^9)
 
Hi All,

Thanks for your input on this. I tested Jindon and Narayan Sir's option and it worked well.

Again thanks folks for providing varies input on this.

Regards,
JD
 
Back
Top