Copy contents of one cell into another if cell is blank

  • Thread starter Thread starter fire9990
  • Start date Start date
Copy/paste manually.

Or run a macro.

Sub qwert()
With ActiveSheet.Range("D2")
If .Value = "" Then
.Value = Range("B2").Value
End If
End With
End Sub


Gord Dibben MS Excel MVP
 
Back
Top