Mar 04, 2024 12:54 PM
Mar 04, 2024 02:00 PM
This sounds a lot like the royalty payments example I posted last week.
Mar 04, 2024 06:48 PM
Yeap, try:
1. Creating a new formula field to output the date of the order in the format "[MONTH] - [YEAR]", e.g. "JAN 2024". You can use the formula DATETIME_FORMAT() to help with this
2. Create a new table called "Monthly Summaries"
3. In this new table, create a linked field to your "Orders" table
4. In your "Orders" table, click the field header for the formula field you created in step 1 and then hit CMD/CTRL+C to copy all the values
5. In your "Orders" table, click the field header for the linked field to the "Monthly Summaries" table and then hit CMD/CTRL+P to paste all the values
6. Now that the data is linked, head back to your "Monthly Summaries" table and add a "Count" field. Now you can see the total number of orders for that month
7. In the "Monthly Summaries" table, create a rollup field and point it at the field in "Orders" that shows the order dollar amounts, and then use the formula "SUM(values)"
Should do what you need! Let me know if you could use an example and I'll put something together