How to wrap a text in excel cell

Hi @sruthesanju

use the below code in execute macro activity or invoke VBA !

Sub vba_wrap_text()
Range("A1").WrapText = True

End Sub

Regards