Hello,
I have two tables which look like here:
1)
| Date | Count |
| 2018-11-01 | 45 |
| 2018-11-02 | 33 |
| 2018-11-03 | 37 |
| 2018-11-04 | 34 |
| 2018-11-05 | 41 |
2)
| Eventdate |
| 2018-11-02 |
| 2018-11-04 |
| 2018-11-04 |
Lets say i wanna do this: For every Eventdate get the "Count" for the matching "Date" and the Date befor that (Row-1) [Assuming the Date Table is orderd and every Date has an entry].
So this is no Problem if the "Eventdate" isnt doubled in the table then i can just match them and use multirow formular.
But i dont want to delete a row (they differ in other columns).
Is there a Formular or Tool that can do this?
Like get Eventdate and look this up in the DateTable and get that Date Count and the Count before that Date.
Thanks