A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Here is a screenshot
- In G2 we have =IF(AND(C2>1,F2>=2006),150,100), and format cell Currency
2)This text is confusing: and has not been remodeled before 2006, Why not and was last remodelled before 2006? That is how I read this.
The question asks for nest IF so use
=IF(E2="No",IF(F2<2006,"Please remodel","~ No Change")," ~ No Change")
Or
=IF(E2="Yes"," ~ No Change",IF(F2>=2006," ~ No Change","Please remodel"))
There are several more options
But a the use of AND makes for a simpler function:
=IF(AND(E2="No",F2<2006),"Please remodel"," ~ No Change")
best wishes