I am trying to create a consolidated list of highlighted cells that are on different tabs in my workbook. As I understand VBA is my best option. Logic would be something like:
Loop through all tabs and If cell = color index 4 then copy value and paste into a tab called 'highlightedcells'
Im as far as this currently
sub findhighlights
For Each ws In ActiveWorkbook.Worksheets
For Each Cell In ws.UsedRange.Cells
If Cell.Interior.ColorIndex = 4 Then
cell.value.copy
Any help would be welcomed.