In other languages, you can include quotation marks in a text string by surrounding the string with the opposite marking, i.e. single quotes around double quotes, or double quotes around single quotes. Appsheet does not seem to like this. I’m trying to use 6", as in “six inch”, in an expression. I’ve tried ‘6"’, text(6"), text(‘6"’), to no avail. Is Appsheet capable of handling this, and if so, how?
Specifically I’m trying to see if 6" is in a list of text items: IN( text(6") , [column])
AppSheet’s formulas try to follow the conventions set by Excel formulas. In this case, you can escape a double quote by doing a double double quote. Confused? Here’s an example:
What exactly is the output you are hoping for here?
It looks like you might be trying to dynamically change the looked-up column based on a value in the current row. I’m not 100% sure, but I don’t think you’ll be able to do this, as it won’t pass the expression assistant without an error, column names must be actual column names.
But that “Lopez Sugar Corporation” is in the Combobox [@ column Millers]. So basically, what I want is, based on the selected value on the combobox, I want to look up the value on the separate table. Will this be possible?
I’m afraid I don’t fully understand your problem but I’m wondering if substituting some other character for the backslashes and then reconstituting the strings on the other end might be an option. Sorry if my idea isn’t applicable to your situation.