Ali_Shannon wrote:
Yes I do! Not sure of the next steps, but thinking shortform should then be synced with the Shows table that houses the Show, Seasons, and Episodes?
No, I think all the work can be done in the Long Form base, prior to syncing.
I think in your Shows table, you’ll just need a Rollup field that looks at your Seasons linked records, and the field with the Season Number in it. It should use a Rollup formula something like this:
IF({On-Air}, MAX(values))
Now your Show knows the number of the “current season”, but only if the show is On-Air.
Next, over in your Seasons table, make a Lookup field that looks up the “Current Season Number” from the linked Show record.
Finally, make a Formula field that checks if the “Season Number” for this record matches the “Current Season Number” that was looked up, and if so, produces a 1
:
IF(
{Season Number} = {Current Season Number},
1
)
Now you should be able to use that field to create filtered Views of only On-Air, Current Seasons, and that view can be selectively synced, or that field can be filtered on in your Short Form base.