I have seen the same kind of questions here but not able to solve... please help. Hai sir presently I am in a project to transfer all excel macro did in 2003 format to 2007.The problem i am facing is method range of object _global failed Please provide me a solution.
Please see the code... there range("Phasewt") not updating.... none of the named ranges in this work book are updating, everywhere its showing error 1004: Iam using now office 2007.
Private Sub FormatRowsAndSum(ByVal TotRows As Integer, StartRow As Integer)
Dim rngFormat As Range
'adds formatting
If TotRows > 2 Then
Set rngFormat = Range(Cells(StartRow + 2, 2), Cells(TotRows + StartRow + 1, 8))
'Range("B11:H11").Select
Range(Cells(StartRow + 1, 2), Cells(StartRow + 1, 8)).Select
Selection.Copy
rngFormat.Select
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
'adds formula
Set rngFormat = Range(Cells(StartRow + 2, 11), Cells(TotRows + StartRow, 12))
'Range("K11:L11").Select
Range(Cells(StartRow + 1, 11), Cells(StartRow + 1, 12)).Select
Selection.Copy
rngFormat.Select
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
End If
ActiveSheet.PageSetup.FitToPagesWide = 1
Cells(TotRows + StartRow + 1, 2) = "TOTALS"
Cells(TotRows + StartRow + 1, 2).Font.Bold = True
Cells(TotRows + StartRow + 1, 2).RowHeight = 20
Range(Cells(TotRows + StartRow + 1, 2), Cells(TotRows + StartRow + 1, 8)).Select
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlThin
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
End With
'writes total weight
With Cells(TotRows + StartRow + 1, 6)
.Value = "=SUM(K" & StartRow & ":K" & TotRows + StartRow & ")"
.Font.Bold = True
.NumberFormat = "#,##0.00"
End With
If Range("ReleaseTo") <> "STR" Then
Range("PhaseWt") = Cells(TotRows + StartRow + 1, 6) ' writes total wt in cover page
End If
'writes total cladding Area
With Cells(TotRows + StartRow + 1, 7)
.Value = "=SUM(L" & StartRow & ":L" & TotRows + StartRow & ")"
.Font.Bold = True
.NumberFormat = "#,##0.00"
End With
If Cells(TotRows + StartRow + 1, 7) > 0 Then
If Range("ReleaseTo") <> "STR" Then
Range("PhaseArea") = Cells(TotRows + StartRow + 1, 7) ' writes total Area in cover page
End If
End If
'writes total quantity
With Cells(TotRows + StartRow + 1, 3)
.Value = "=SUM(C" & StartRow & ":C" & TotRows + StartRow & ")"
.Font.Bold = True
.NumberFormat = "#,##0"
End With
Range("B4").Select
End Sub
thanks for your attention.