March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello
I'm new in DAX and in this forum, sorry if something wrong.
I have such table with balance by SKU
I've created matrix visual and the task is to show last actual balance even if there're no records in source table for that date.
In my example it should be 30 for SKU1 at 02.03.19 and 20 for SKU2 at 03.03.19
Thanks in advance.
Solved! Go to Solution.
@Anonymous Create a new table as below and use this table for your Matrix visual
Test267Out = UNION( SELECTCOLUMNS( EXCEPT( CROSSJOIN(VALUES(Test267MatrixBlankZero[Date]),VALUES(Test267MatrixBlankZero[SKU])) ,SELECTCOLUMNS(Test267MatrixBlankZero,"Date",[Date],"SKU",[SKU]) ) ,"Date",[Date],"SKU",[SKU],"Qty",0 ) ,Test267MatrixBlankZero )
Here is the screenshot of both actual (using the source table) and expected (using the above new calculated table)
Proud to be a PBI Community Champion
@Anonymous Please add an another column to the new table that was created as above
NewQty = VAR _PrevDate = CALCULATE(MAX([Date]),FILTER(Test267Out,Test267Out[SKU]=EARLIER(Test267Out[SKU]) && Test267Out[Date]<EARLIER(Test267Out[Date]) && Test267Out[Qty] <> 0)) VAR _Lkp = LOOKUPVALUE(Test267Out[Qty],Test267Out[SKU],Test267Out[SKU],Test267Out[Date],_PrevDate) RETURN IF(ISBLANK(_Lkp),Test267Out[Qty],_Lkp)
Proud to be a PBI Community Champion
@Anonymous Create a new table as below and use this table for your Matrix visual
Test267Out = UNION( SELECTCOLUMNS( EXCEPT( CROSSJOIN(VALUES(Test267MatrixBlankZero[Date]),VALUES(Test267MatrixBlankZero[SKU])) ,SELECTCOLUMNS(Test267MatrixBlankZero,"Date",[Date],"SKU",[SKU]) ) ,"Date",[Date],"SKU",[SKU],"Qty",0 ) ,Test267MatrixBlankZero )
Here is the screenshot of both actual (using the source table) and expected (using the above new calculated table)
Proud to be a PBI Community Champion
Thank you, I feel that it is aslmost solution.
But which measure or condition should I use to get Quantity at previous non blank date value instead zeroes?
First I wanted to add CALCULATE instead zero, but got blank:
@Anonymous Please add an another column to the new table that was created as above
NewQty = VAR _PrevDate = CALCULATE(MAX([Date]),FILTER(Test267Out,Test267Out[SKU]=EARLIER(Test267Out[SKU]) && Test267Out[Date]<EARLIER(Test267Out[Date]) && Test267Out[Qty] <> 0)) VAR _Lkp = LOOKUPVALUE(Test267Out[Qty],Test267Out[SKU],Test267Out[SKU],Test267Out[Date],_PrevDate) RETURN IF(ISBLANK(_Lkp),Test267Out[Qty],_Lkp)
Proud to be a PBI Community Champion
Hello @PattemManohar
Thank you, that's exactly what I needed!
Whith little change
Test267Out[Date]<=EARLIER(Test267Out[Date])
instead of
Test267Out[Date]<EARLIER(Test267Out[Date])
Many thanks!
create Measure of Quantity
Measure_Count = COUNT([Quantity])+0
and use this measure in matrix
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
146 | |
97 | |
79 | |
69 |