A family of Microsoft relational database management systems designed for ease of use.
The issue is that I cannot figure out how to return "Yes" if there is a match to "PS3" in the "Platform" column.
All you need to do is to enter a simple expression which will evaluate to True of False. The following is an example in a table of contacts, where I want a calculated field named Family to indicate whether the contact's last name is Sheridan. For this the expression is:
[LastName] = "Sheridan"
This simple logical expression will evaluate to True for any row with a LastName value of Sheridan, False otherwise. Access represents True by storing a value of -1, False by storing a value of 0, so this is what you'd see in the column. To get it to show Yes or No we need to do one more thing, which is to set the field's Format property to:
Yes/No
It will now show Yes or No, but its underlying value doesn’t change, so if we need to refer to the field we should still use the Boolean constants of TRUE or FALSE. In a query to return only those contacts with a last name of Sheridan for instance the query's WHERE clause would be:
WHERE [Family] = TRUE
Now can you work out what expression you need to use for the calculated field in your case?
PS: One thing I forgot to mention. The calculated field's ResultType property should also be set to Yes/No. This will ensure it returns a Boolean value. This is the definition of Boolean in the OED:
Boolean /0ˈbu:lɪən/ adjective. Also -ian. M19.[ORIGIN from George Boole (1815–64), English mathematician + -an.]Of, pertaining to, or described by an abstract system of postulates and symbols applicable to logical problems.
Coincidentally George Boole taught at the institute in Liverpool which later became the high school which I attended.