Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel ?, cell value based on text input in other cell 1

Status
Not open for further replies.

ZiprHead

Technical User
Oct 16, 2001
2
US
I want a cell to display text based on the text input into another cell. Specifically, if someone enters a "Y" for yes, I want the next cell to display "Ontime". If the input to the first cell is "N" for no, I want the display to show "Late". If the first cell is blank, I want the second cell to be blank also.

This is probably a pretty simple thing to do but I've only had minimal excel training. Any help will be very much appreciated.
 
Just use an If statment. This monitors the value in A1:
Code:
=IF(A1="Y","On Time",IF(A1="N","Late",""))
 
Thanks, that looks like just what i was looking for. I was making it more complicated than it needed to be.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top