Mohit,
Attached is your sheet with a macro in it called DatedReport. If you make a change to cell G1, the DatedReport macro is run automatically for you.
I had to change the title of the sheet Kotak 811 because it wasn't an exact match for the text strings in the A/C details section. Make sure those stay in sync.
For the curious, here's the code...
In the Sheet module "Report":
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Address = "$G$1" Then Call DatedReport
Target.Select
End Sub
And in a regular Module1:
Option Explicit
Sub DatedReport()
Dim Rng As Range, cell As Range, LR As Long
Application.ScreenUpdating = False
Application.EnableEvents = False
Set Rng = Range("A4:A21")
Range("A24:G" & Rows.Count).Clear
For Each cell In Rng
If cell <> "" Then
With Sheets(cell.Text)
.Range("A4:I4").AutoFilter
.Range("A4:I4").AutoFilter Field:=1, Criteria1:=Format(Sheets(1).Range("G1"), "DD-MMM")
LR = .Range("A" & Rows.Count).End(xlUp).Row
If LR > 4 Then
.Range("A1").Copy Range("A" & Rows.Count).End(xlUp).Offset(2, 0)
With Range(Range("A" & Rows.Count).End(xlUp), Range("A" & Rows.Count).End(xlUp).Offset(0, 6))
.MergeCells = True
.Font.Bold = True
.Interior.ColorIndex = 15
.Borders.LineStyle = xlContinuous
.Borders.Weight = xlMedium
End With
.Range("A4:G" & LR).Copy Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
.Range("A4:I4").AutoFilter
Else
.Range("A4:I4").AutoFilter
End If
End With
End If
Next cell
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub
Bookmarks