Welcome to the Airtable community!
Try using a series of rollup fields. In the [Recipes] table, have a rollup with the COUNTA(values)
aggregation formula that counts the number of meals. Then, in the [Ingredients] table, have a rollup with the SUM(values)
aggregation formula that adds up the numbers from the [Recipes] table.
Welcome to the Airtable community!
Try using a series of rollup fields. In the [Recipes] table, have a rollup with the COUNTA(values)
aggregation formula that counts the number of meals. Then, in the [Ingredients] table, have a rollup with the SUM(values)
aggregation formula that adds up the numbers from the [Recipes] table.
Yes - this is fantastic and works very well! Thank you!
Welcome to the Airtable community!
Try using a series of rollup fields. In the [Recipes] table, have a rollup with the COUNTA(values)
aggregation formula that counts the number of meals. Then, in the [Ingredients] table, have a rollup with the SUM(values)
aggregation formula that adds up the numbers from the [Recipes] table.
I have trouble creating a recipe cost calculator.
I have tables:
(Ingedients) with properties {Description} , {Unit} , {Price}
(Doughs) with properties {Ingredients} , {Unit} , {Ammount} , {Cost Per Unit} , {Cost}
(Fillings) with properties {Ingredients} , {Unit} , {Ammount} , {Cost Per Unit} , {Cost}
(Expenses) with properties {Description} , {Unit} , {Price}
(Recipes) with properties (Doughs) , (Fillings) , (Ingedients) , (Expenses) , (Total Cost)
Can you help