Apr 15, 2023 03:13 PM
Hello, I'm just learning so I apologize for the ignorance.
I'm trying to collect game statistics for my son's hs lacrosse team.
I have a data table with fields of Statistics (like shots made, shots missed, etc.) and Player.
I have a form that lets me enter statistic (e.g. forced a turnover), Player (6 Jimmy) and submit.
From that, I have a pivot table that collects the stats for each player.
I want to make a field for Quarter that doesn't have to be entered each time I create a new record. I tried creating a table with game information and doing a lookup but I don't think that works.
Is there a way to have a record keep the Quarter the same until I have it changed at the end of each quarter? The goal is to be able to have a summary of stats for each quarter and the overall game.
Thank you!
Mike
Solved! Go to Solution.
Apr 15, 2023 07:26 PM - edited Apr 15, 2023 09:37 PM
Hi Mike,
If I understand correctly you're using a form to create all your new records. In this case you can autofill the quarter in your form by changing your form's URL slightly. Create a "Quarter" field with single select option for each quarter (First, Second etc. in this example). Click on Share or open your form in the browser to find your URL. To the end of the URL add ?prefill_Quarter=First where Quarter is the name of your field and First is the value you want prefilled. Use this form to enter your stats until the next quarter when you'll use the ?prefill_Quarter=Second form, etc.
Here's some documentation that will explain in greater detail: https://support.airtable.com/docs/prefilling-a-form
Go team!
Apr 15, 2023 07:26 PM - edited Apr 15, 2023 09:37 PM
Hi Mike,
If I understand correctly you're using a form to create all your new records. In this case you can autofill the quarter in your form by changing your form's URL slightly. Create a "Quarter" field with single select option for each quarter (First, Second etc. in this example). Click on Share or open your form in the browser to find your URL. To the end of the URL add ?prefill_Quarter=First where Quarter is the name of your field and First is the value you want prefilled. Use this form to enter your stats until the next quarter when you'll use the ?prefill_Quarter=Second form, etc.
Here's some documentation that will explain in greater detail: https://support.airtable.com/docs/prefilling-a-form
Go team!
Apr 15, 2023 10:23 PM
Jan_Cape's solution would work great for your purposes
Assuming the "Quarter" value will always be based on the created time of the record, i.e. when it was submitted, yo could perhaps use a formula field with DATETIME_FORMAT() for this purpose as well:
And the formula used is:
DATETIME_FORMAT(Date, "Qo") &
" Quarter " &
DATETIME_FORMAT(Date, "YYYY")
Apr 16, 2023 06:36 AM
Jan, Thank you! That worked very well. It took me a bit to find how to add the string to the URL and then followed the video that you suggested to redirect to the URL with the prefill info added.
From that, I discovered that I can share the new form each quarter with the parents that are helping to record the stats for the boys. I can actually have one person recording shots, one penalties, etc., etc.!!
This really helps, thank you!!
Mike
Apr 16, 2023 06:38 AM
Thanks Adam, that will be very useful for another project I'm working on.
Best, Mike