To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Community,
I am working on a sales table (1), when the sales value is null I have to return the previous nonblankvalue for each product (2).
I used the following formula but it's not returning the values I am looking for:
Could you please help me correcting my formula to get the green column.
Thank you in advance.
Solved! Go to Solution.
[Column] = var __product = Products[Product] var __date = __Products[DateKey] var __lookupTable = filter( filter( Products, Products[Product] = __product ), NOT ISBLANK( Products[Sales] ) && Products[DateKey] <= __date ) var __sales = MAXX( TOPN( 1, __lookupTable, Products[DateKey] ), Products[Sales] ) return __sales
Best
Darek
[Column] = var __product = Products[Product] var __date = __Products[DateKey] var __lookupTable = filter( filter( Products, Products[Product] = __product ), NOT ISBLANK( Products[Sales] ) && Products[DateKey] <= __date ) var __sales = MAXX( TOPN( 1, __lookupTable, Products[DateKey] ), Products[Sales] ) return __sales
Best
Darek
Hi @Anonymous ,
Thank you for the solution. It works 🙂
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |