I'm looking to make a macro that copies every 4th cell in Column B (Starting at B3) and then pastes it in Column A (the paste is 4 cells in a row. So the value in B3 will paste into A3,A4,A5,A6. Then the macro should copy B7 and paste it in A7,A8,A9,A10...etc
The cell B3 that I copy is a merged cell (B3-B6).
Ultimately I'm trying to get to a point where I can filter a list by date, but when filtering by merged cells it causes problems.
I added an image to show the first two iterations

I can get the initial copy and paste down, but when it comes to making the loop for each of these I start getting confused
MergeArea.Cells.Countreturns the cell count of the merged area (Range).Offset(, -1)get the cell of col A in the same row.Microsoft documentation: