There are 10 Sheets (Sheet1...Sheet10) with tables in the same range (C25:G34 & C42:N51).
The rows have to be copied if the \'Total Weight\' column has valu
For anyone else that stops by; here is simple code to clear a specific range in a row if one cell contains a specific value.
For Each cell In Range("C11:N50")
If cell.Value2 = "0" Then
Set cRng = Range("C" & cell.Row & ":" & "O" & cell.Row)
' Or Set clearRng = Range("C" & cell.Row & ":O" & cell.Row)
cRng.Clear
End If
Next