I am trying to come up with a code that will delete all entries of a row if the corresponding B cell of the row is empty.
For example, if B4 is empty the code should delete all entries in C4:AU4. It should do this for all rows starting from B3 to a beforehand defined value for MaxRowList.
Only thing I could come up with so far is
Columns("B:B").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
But this deletes the complete row from the worksheet which screws up the arrangement. It is essential that it only deletes the entries in the corresponding $C$:$AU$ rangeand doesn't remove the row.