When specifying the expression of selection condition, append a $ to the end of a text string to indicate it is a string literal and not a variable name, e.g., "text"$.
In the example described, in order to select/return the case with variable "Name" equivalent to text "Product" (i.e. the last case in the spreadsheet), you can use expressions with conditional functions such as:
"Name" = "Product"$;
or IN ("Product"$, "Name")=1;
or Contains ("Name", "Product"$).