A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Select all the data (not including the header row) and run the following:
Sub AddIndents()
Dim i As Long
Dim theRange As Range
'
' Application.ScreenUpdating = False ' Optional
Set theRange = Selection
'
For i = 1 To theRange.Rows.Count
theRange.IndentLevel = 0
theRange.Cells(i, 2).InsertIndent theRange.Cells(i, 1)
Next i
' Application.ScreenUpdating = True ' Optional
'
End Sub