How to merge and wrap text in vb.net or in excel?
Thanks in advance :icon_smile:

How to merge and wrap text in vb.net or in excel?
Thanks in advance :icon_smile:

Try it out this
With Selection
.WrapText = True
End With

or maybe

With Range("A1")
.WrapText = True
End With

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.