An if statement in excel is written in the form:
=if(statement/test, value if true, value if false)
When calculating if a value is greater or equal to, the sign that can be used is:
>=
So putting this into a formula:
=(if B17 >= 200000, "Yes", "No")
Hope this helps!