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

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?