I am trying to make a calendar that also automates a to do list. (why we are doing this in google sheets and not an app that does so easily for free is an excellent question that I have no answer to. Like Mongo I am just a pawn in the game of life.)so have been the doing the dumb old cell = correspondent cell on the calendar and a filter to only display the cells that have actual info.so I've been using this code to continually refresh my filter here https://medium.com/google-cloud/automatically-refreshing-basic-filter-on-google-spreadsheet-using-google-apps-script-e9728826bbd8This works great on computer - filter instantly updates, all that good stuff. The problem is that is doesn't work on Google sheets mobile. It will change already displayed data just fine but not display anything else added to calendar without manually refreshing to the filter. Any tips on fixing this would be greatly appreciated.
1st edit: Tried the () filter formula and now I am stuck in circular dependency error hell because I can't get it to display the results anywhere besides the range it's trying to filter.
2nd edit: We have moved into "Array results was not expanded because it would overwrite data" hell. Which I guess is progress
3rd edit: Got () formula to work by doing the same thing enough times that it finally took. Then I remembered why I didn't use the () formula in the first place - the sheet filter function allowed me to display the columns on the row with the displayed result, allowing users to imput further information in those columns tied to the to do list item. Back to square 1. . . Here's a copy of what I'm working on so you can actually see it. (https://docs.google.com/spreadsheets/d/1s0K2wWvC9JI4WF1xrtOhVsrsapXR7ELdH-dPooVeq6E/edit?usp=sharing)