Hello cuttothechase,
Welcome to the forum!
Here is the VBA code to copy the categories automatically. The macro is called whenever the "Overview" worksheet becomes the active sheet. All the categories are updated when this occurs.
The attached workbook has the macros added.
Overview Event Code
Private Sub Worksheet_Activate()
Call CopyCategories
End Sub
Copy Categories Macro Code
Sub CopyCategories()
Dim CatCell As Range
Dim DstRng As Range
Dim DstWks As Worksheet
Dim SrcRng As Range
Dim SrcWks As Worksheet
Dim Start As String
Dim Total As Range
Set DstWks = Worksheets("Overview")
Set SrcWks = Worksheets("Budget")
Set DstRng = DstWks.Range("A14")
Set SrcRng = SrcWks.Range("A6").CurrentRegion
On Error GoTo ErrorHandler
Set CatCell = SrcRng.Columns(1).Find("Category", , xlValues, xlPart, xlByRows, xlNext, False, False, False)
If CatCell Is Nothing Then Exit Sub
Application.ScreenUpdating = False
Start = CatCell.Address
Do
Set Total = CatCell.End(xlDown).Offset(1, 10)
With DstRng
.Cells(1, 1).Formula = CatCell.Value
.Cells(1, 2).Formula = "=" & "'" & SrcWks.Name & "'!" & Total.Offset(0, 0).Address(False, False)
.Cells(1, 3).Formula = "=" & "'" & SrcWks.Name & "'!" & Total.Offset(0, 1).Address(False, False)
.Cells(1, 4).Formula = "=" & "'" & SrcWks.Name & "'!" & Total.Offset(0, 2).Address(False, False)
.Cells(1, 5).Formula = ""
.Cells(1, 6).Formula = "=" & "'" & SrcWks.Name & "'!" & Total.Offset(0, 3).Address(False, False)
End With
Set DstRng = DstRng.Offset(1, 0)
Set CatCell = SrcRng.FindNext(CatCell)
If CatCell.Address = Start Then Exit Do
Loop
ErrorHandler:
Application.ScreenUpdating = True
If Err <> 0 Then
MsgBox "Run-time error '" & Err.Number & "':" & vbLf & vbLf & Err.Description
On Error GoTo 0
End If
End Sub
Bookmarks