How to increase the width of a cell in excel?

Hi @geethamrutha_pasumar,

Use following VBA code in Invoke VBA activity.

Sub Macro1()

    Columns("E:E").ColumnWidth = 14.67

End Sub

—> change column & width as per your requirement

1 Like