DATE | NAME | CX# | DATA |
---|---|---|---|
11/7/2021 | Alex | CX55 | 1.34 |
11/7/2021 | Linda | CX43 | 22.9 |
11/7/2021 | Loki | CX109 | 3.43 |
11/8/2021 | Alex | CX 12 | 23 |
11/8/2021 | Linda | CX 113 | 2.49 |
What I am trying to do is, paste in a master sheet of data for a week, which is broken down by date, and by person. I need to formulate charts using data with a lookup where the data from Alex can be pulled and populated into another sheet for charting. Since the dates are going to be changing every week as new data is pasted/populated, I cannot do a normal vlookup and match based on unique static strings. Not only are dates changing, but even the names themselves day to day and week to week. Ideally I'd end up with something like this
DATE | NAME | DATA |
---|---|---|
11/7/2021 | Alex | 1.34 |
11/8/2021 | Alex | 23 |
using logic which is flexible enough to group when the data column is dynamic, as well as the name column. Maybe I am just not thinking if it in a way that makes sense with the functions available. Any guidance would help!