rkol297
Board Regular
- Joined
- Nov 12, 2010
- Messages
- 131
- Office Version
- 365
- 2019
- Platform
- Windows
I want to have what value is entered in column E which is Yes, No, or Blank to dictate what is in column F to list Yes = HI, No = N/A, Blank = Blank.
I figured out how to do if for a single cell but how do you apply it for the entire column E and R?
I figured out how to do if for a single cell but how do you apply it for the entire column E and R?
HTML:
Sub Network()
If Range("E3").Value = "No" Then Range("R3").Value = "N/A"Else: Range("R3").Value = "HI"End If