I’ve created a “book notes” document, with a
- list of books, and
- list of notes (which looks up the books table)
I’ve added a column to my “books” list, which I want to look up all quotes associated with each book.
I tried—
[Notes from Books].Quote.Filter([Notes from Books]=thisRow)
—but it didn’t work. (I tried adding “toText
” to every possible value, also tried getting more specific with column references—still didn’t work.)
However, the Lookup does work if I use “Contains” instead of “equals”—
[Notes from Books].Quote.Filter([Notes from Books].[Name of Book].Contains(thisRow))
—but this is too inclusive; I need an absolute match. (Example: suppose I record quotes from both “Book Title” and “Book Title II: Return of the Book!” ? “Contains()
” would reference both.)
What am I doing wrong with my “=” formula? (Feels like I’m missing something obvious )
Here’s my document, fwiw—