If Null Set Value to Zero
Please help me modify the VBA code listed below.
If the value for Volume is Null then return a value of zero.
Thanks,
With Sheets("Sheet1")
.Cells(RowCount, "A") = Team
.Cells(RowCount, "B") = Volume
.Cells(RowCount, "C") = Date
End With
|