Sub Row_Height()
Application.ScreenUpdating = False
Dim i As Long
Dim b As Long
Dim Lastrow As Long
For b = 1 To Sheets.Count
Lastrow = Sheets(b).Cells(Rows.Count, "C").End(xlUp).Row
For i = 1 To Lastrow
If Sheets(b).Cells(i, "C").Value = "Method of Quoting" Then Sheets(b).Cells(i, 3).RowHeight = 100
Next
Next
Application.ScreenUpdating = True
End Sub
Sub EnlargeMethodOfQuoting_2()
For Each Sh In ActiveWorkbook.Sheets
If Left(Sh.Name, 9) = "Labor BOE" Then
On Error Resume Next
Sh.Columns("C").Find("Method of Quoting:", , xlValues, xlWhole).RowHeight = 100
On Error GoTo 0
End If
Next Sh
End Sub
Sub EnlargeMethodOfQuoting_3()
For Each Sh In ActiveWorkbook.Sheets
If Left(Sh.Name, 9) = "Labor BOE" Then
On Error Resume Next
Columns("C").Replace "Method of Quoting:", "#N/A", xlWhole
[U]Columns("C").SpecialCells(xlConstants, xlErrors).RowHeight = 100[/U]
Columns("C").Replace "#N/A", "Method of Quoting:", xlWhole
On Error GoTo 0
End If
Next Sh
End Sub
Sub Row_Height()
Application.ScreenUpdating = False
Dim i As Long
Dim b As Long
Dim Lastrow As Long
For b = 1 To Sheets.Count
Lastrow = Sheets(b).Cells(Rows.Count, "T").End(xlUp).Row
For i = 1 To Lastrow
If Sheets(b).Cells(i, "C").Value = "Method of Quoting" Then Sheets(b).Cells(i, 3).RowHeight = 100
Next
Next
Application.ScreenUpdating = True
End Sub
Sub Row_Height_2()
Application.ScreenUpdating = False
Dim i As Long
Dim b As Long
Dim Lastrow As Long
Dim Sh As Worksheet
For Each Sh In ActiveWorkbook.Sheets
If Left(Sh.Name, 9) = "Labor BOE" Then
Lastrow = Sh.Cells(Rows.Count, "T").End(xlUp).Row
For i = 1 To Lastrow
If Sh.Cells(i, "C").Value = "Method of Quoting" Then Sheets(b).Cells(i, 3).RowHeight = 100
Next
End If
Next Sh
Application.ScreenUpdating = True
End Sub
Sub EnlargeMethodOfQuoting()
Dim Sh As Worksheet
Dim X As Integer
Dim End_Row As Integer
For Each Sh In ActiveWorkbook.Sheets
If Left(Sh.Name, 9) = "Labor BOE" Then
Dest_Lastrow = Sh.UsedRange.Row - 1 + ActiveSheet.UsedRange.Rows.Count
Dest_LastColumn = ActiveSheet.UsedRange.Column - 1 + ActiveSheet.UsedRange.Columns.Count
For lRow = Dest_Lastrow To 3 Step -1
With Sh.Cells(lRow, "C")
On Error Resume Next
.Find("Method of Quoting:", , xlValues, xlWhole).RowHeight = 100
On Error GoTo 0
End With
Next lRow
End If
Next Sh
End Sub