I have a nutrition table on the right side of the spreadsheet. Let’s say from column “P”
+---------------------+----------+------+-------+---------+
| P | Q | R | S | T |
+---------------------+----------+------+-------+---------+
| Name | Calories | Fat | Carbs | Protein |
| Brown Rice (cooked) | 112 | 0.83 | 2.32 | 23.51 |
| Chicken Breast | 164 | 6.48 | 0 | 24.82 |
+---------------------+----------+------+-------+---------+
Now I want a table on the right left of the table, where I can write the name of the food, and the amount (in g), it looks up (by name) and fills out the rest. Something like this:
+---+----------------+-----------+----------+------+-------+---------+
| | A | B | C | D | E | F |
+---+----------------+-----------+----------+------+-------+---------+
| 1 | Name | Amount(g) | Calories | Fat | Carbs | Protein |
| 2 | Chicken Breast | 70 | 114.8 | 4.54 | 0 | 17.38 |
| 3 | Chicken Breast | 100 | 164 | 6.48 | 0 | 24.82 |
+---+----------------+-----------+----------+------+-------+---------+
Where
C2 = Q2 / 100 * B2 AND C3 = Q2 / 100 * B2
And I only have to fill out A2, B2, A3, B3
Is this possible without macro?