How can I use one table to filter another table?

Hi @victoria

I am trying something very similar in order to filter a custom template column. Thus I am using recordUpdates as you suggested:

image

I am not sure the syntax to reference the custom column however to determine if the checkbox is active. This gives me an "Unexpected template string" error:

let data= {{table1.recordUpdates}};
return data.filter(row=>row.`Custom Column 1` == true);

How do I reference the custom column in dot format given the spaces in the name?