$$Excel-Macros$$ Activate the word wrap option in excel......

2012-08-08 Thread Mohammed Muneer
Dear friends, I want to make active the word wrap option here so that the text train should not cross the page break while typing. Any formula or vba code is there to be adopted to apply on this. Regards, Muneer, CC -- Join official facebook page of

Re: $$Excel-Macros$$ Activate the word wrap option in excel......

2012-08-08 Thread Sam Mathai Chacko
It would be very difficult to precisely figure the length of text and then decide on the length of the text and then wrap it Anyway, in case you want to activate word wrap on any change in the cell, use Private Sub Worksheet_Change(ByVal Target As Range) Target.WrapText = True End Sub in