Ashish Batham
Member
For row = reason_count + 24 To 2 * reason_count + 23
Cells(row, 1) = row - (reason_count + 22)
With Cells(row, 5)
-------------------------------------------------------------------------------------------------------
Cells(row, 5).Borders(xlEdgeTop).LineStyle = xlContinuous
-------------------------------------------------------------------------------------------------------
Cells(row, 3).Interior.Color = 12632256
-------------------------------------------------------------------------------------------------------
With Cells(row, 7) - What is the meaning of this statement?
-------------------------------------------------------------------------------------------------------
With Cells(2 * reason_count + 25, 2)
.Value = "Total Append Assets"
.Font.Bold = True
End With
Cells(row, 1) = row - (reason_count + 22)
With Cells(row, 5)
-------------------------------------------------------------------------------------------------------
Cells(row, 5).Borders(xlEdgeTop).LineStyle = xlContinuous
-------------------------------------------------------------------------------------------------------
Cells(row, 3).Interior.Color = 12632256
-------------------------------------------------------------------------------------------------------
With Cells(row, 7) - What is the meaning of this statement?
-------------------------------------------------------------------------------------------------------
With Cells(2 * reason_count + 25, 2)
.Value = "Total Append Assets"
.Font.Bold = True
End With