I want to check if all cells with certain properties (a specific color for example) in a given range are not empty.
The problem is that inside that range, there are some merged cells, and those vary in dimensions (So, I can't just detect them and work around them systematically).
Is there anything like For each cell in Range([some range])
that would give me only one cell for a merged cell?
I tried it and it gives me the standard cells, which means that the merged cells are counted more than once. And the content of the cell is assigned only to the upper left corner cell (So, it detects empty cells in merged cells)
I also thought about the offset function, but I don't think it would work (For example here. Black cells are merged cells):