I want all my data to be on the left side of the cell

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!

@victoryv4569,

Use Format Cells activity for this.

The image depicts an Excel formatting operation where cells in column A of Sheet1 are being formatted with a dialog box showing alignment options for horizontal (left) and vertical (bottom). (Captioned by AI)

@ashokkarale

can you suggest me other way

@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.