Answer:
=IF(B10>=200000,"YES","NO")
Explanation:
The following conditions are assumed to address the query
- When cell B10 contains a value that meets or exceeds 200000, it will result in YES in cell B17
- Conversely, if it does not, B17 will produce NO
After outlining the assumptions;
First, formulas in Excel commence with the = sign
Then, introduce the IF statement
The examination of the IF condition proceeds as follows:
B10>=200000: - This checks whether cell B10 is equal to or exceeds 200000
"YES" -> When the aforementioned condition is satisfied, cell B17 presents YES
"NO" -> On the contrary, cell B17 reflects NO