I figured it out, thanks to the help from my brother. I was taking the IF statement out too far. In an IF, there can only be 3 parts, the STATEMENT, the TRUE and the FALSE. I was adding 4.
=IF(D2="Fire", "NW", IF(D2="Wind","SE","")) is correct,
1 2 3
=IF(D2="Fire", "NW", "", IF(D2="Wind",SE,"")) was incorrect
1 2 3 4
However, I am still unable to edit multiple cells in the same statement...
This was done from Cell F2:
=IF(D2="Fire","NW"&G2="W",IF(D2=...
Now it fills the G2 Cell with W and leaves False in F2.
Any pointers?