I'm currently trying to update a formula from a four-tiered option to a two-tiered.
The current formula looks like this:
=IF($B5="","",IF(W5=1,"Great",IF(W5=2,"Good",IF(W5=3,"Weak",IF(W5=4,"Bad","")))))
$B5 is a date field, if there's nothing there then the cell should be blank.
I'm...