Hi All,
I want all my data to be on the left side of the cell
from 11th cell onwards bot entering data from middle of the cell. But as per the business reequipment Bot should add at the left side of the cell just like row 1.
How can i achieve this.
Thank you!
ashokkarale
(Ashok Karale)
September 27, 2024, 6:58am
2
@victoryv4569 ,
Use Format Cells activity for this.
@ashokkarale
can you suggest me other way
ashokkarale
(Ashok Karale)
September 27, 2024, 7:03am
4
@victoryv4569 ,
Another one left is VBA Macro.
Sub AlignLeft()
ThisWorkbook.Sheets("Sheet1").Columns("A:C").Select
With Selection
.HorizontalAlignment = xlLeft
End With
End Sub
Change the Sheet name according to you file.