JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,687
- Office Version
- 365
- Platform
- Windows
I have a number of "items" that I want to rate and track. One example is food. The minisheet below illustrates a simplified version of the sheet I am currnetly using to track vrious types of food that I buy.
The table on the left (TblRtgs) contains a record with a rating (0-100) for each time I try any of these food products. The table on the right (TblProds) contains a record for each product with the average of the ratings.
This works Ok, but I'd like to be able to do more, such as track the prices, the stores where the items were purchased, and calculate moving averages.
Is what I have the best way to do this? Is there a better way that will provide more options? Or should I move it all to a dataase?
Thanks
The table on the left (TblRtgs) contains a record with a rating (0-100) for each time I try any of these food products. The table on the right (TblProds) contains a record for each product with the average of the ratings.
This works Ok, but I'd like to be able to do more, such as track the prices, the stores where the items were purchased, and calculate moving averages.
Is what I have the best way to do this? Is there a better way that will provide more options? Or should I move it all to a dataase?
Product comparison, Mr Excel.xlsx | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | |||
4 | Date | Product | Type | Rating | Product | Type | Number | Avg Rtg | |||
5 | 7/20/23 | D | Soup | 65 | E | Bacon | 1 | 85 | |||
6 | 7/18/23 | B | Bacon | 72 | B | Bacon | 2 | 75 | |||
7 | 6/09/23 | E | Bacon | 85 | C | Cereal | 3 | 90 | |||
8 | 4/10/23 | C | Cereal | 91 | A | Soup | 2 | 87 | |||
9 | 1/30/23 | B | Bacon | 77 | D | Soup | 2 | 63 | |||
10 | 12/14/22 | A | Soup | 85 | |||||||
11 | 9/14/22 | A | Soup | 89 | |||||||
12 | 7/07/22 | C | Cereal | 88 | |||||||
13 | 6/08/22 | D | Soup | 60 | |||||||
14 | 4/16/22 | C | Cereal | 92 | |||||||
Mr Excel |
Cell Formulas | ||
---|---|---|
Range | Formula | |
I5:I9 | I5 | =COUNTIFS(TblRtgs[Product],[@Product]) |
J5:J9 | J5 | =AVERAGEIFS(TblRtgs[Rating],TblRtgs[Product],[@Product]) |
D5:D14 | D5 | =XLOOKUP([@Product],TblProds[Product],TblProds[Type]) |
Product comparison, Mr Excel.xlsx | |||
---|---|---|---|
M | |||
11 | |||
Mr Excel |
Thanks