Hi Team,
I have a table which shows representative, Region, Date, Items and No. of Units. I just want to look at the previous date units to for the date.
Say Example, For 2018-01-06 -->East-->Jones-->Pencil-->Previous Unit should be the unit is previous date for the same combination.
Regards,
Pradeep
Solved! Go to Solution.
If you want to do this as a calculated column you could use something like the following
Prev Units = var _Region = Table1[Region] var _Representative = Table1[Representative] var _item = Table1[Items] var _orderDate = Table1[OrderDate] var _prevDate = MAXX(FILTER(Table1, Table1[OrderDate] < _orderDate && Table1[Items] = _item && Table1[Region] = _Region && Table1[Representative] = _Representative), Table1[OrderDate]) var _result = LOOKUPVALUE(Table1[Units], [Region] , _Region, [Representative], _Representative, [Items], _item, [OrderDate] ,_prevDate) return _result
If you want to do this as a calculated column you could use something like the following
Prev Units = var _Region = Table1[Region] var _Representative = Table1[Representative] var _item = Table1[Items] var _orderDate = Table1[OrderDate] var _prevDate = MAXX(FILTER(Table1, Table1[OrderDate] < _orderDate && Table1[Items] = _item && Table1[Region] = _Region && Table1[Representative] = _Representative), Table1[OrderDate]) var _result = LOOKUPVALUE(Table1[Units], [Region] , _Region, [Representative], _Representative, [Items], _item, [OrderDate] ,_prevDate) return _result
@d_gosbell Thanks for this solution. I understand that this gets the 1-period lag record. Is it possible to modify the formula to get 2-period lag, 1-period lead, 2-period lead values etc.?
Going back or forward an abitrary number of periods would not be efficient using the lookup approach. Possibly something like the following by calculating a rank of the dates would work better for that.
Thank you d_gosbell. Fantastic solution that you have provided.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
75 | |
66 | |
51 | |
49 |
User | Count |
---|---|
183 | |
101 | |
80 | |
79 | |
77 |