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
Hi guys,
I'm struggling with a tricky situation.
I have a large fact table that contain specific account numbers that contain a one time stamp of a credit limit amount. One credit limit started in October (50K) and 2 additional ones in December (1Mil. and 100K). These credit limits should be available as amounts in each month, so even though they are stamped once in a FactTable they should appear every month in the total sum of money at the clients disposal. However this proved to be tricky to achieve. The amounts are appearing but not correctly. The 50K isn't valid anymore from December, it's replaced with the 1.1 Milion, even though it should be 1.15mil. and on the total level it's also not correct.
These 3 values are stamped only on one specific date, but I need them appearing indefinitely. Is this possible to achieve?
My Last Balance current measure is:
Really hope you guys can help!
Here is the link to the shared file pbix sample file: https://drive.google.com/drive/folders/1TQkIGS_QWORk_PMysC1ko8puqniXM1n4?usp=sharing
Here is a proposed measure formula. It produces the correct cumulative sums but does require the dates relationship to be inactive.
Last Balance =
var md=max(DimCalendar[Date])
var b = summarize(FactAmount,DimAccount[AccountCode],DimAccountingType[AccountingTypeCode],"sm",CALCULATE(sum(FactAmount[Amount]),FactAmount[Date]<=md))
RETURN sumx(b,[sm])
If that is not acceptable you'll need to use a disconnected table for the matrix columns.
Hi @lbendlin ,
I think the disconnected table will not be the right approach, nor innactive relationship, because this way on a yearly level it will also show the same value of 1.150.000$, while for 2023 if we look at the monthly sum the it should be 12*1.150.000 = 13.800.000
while for 2023 if we look at the monthly sum the it should be 12*1.150.000 = 13.800.000
why? There are no actual values being added in 2023. All you do is carry over the last balance from December 2022.
To report on things that are not there you need to use disconnected tables and/or crossjoins
Yes, but the problem is that here things that are not there are being reported at the same time with things that are, meaning the results when using a disconnected table will not be suitable, as the actual data will be calculated in a wrong way:
This has been driving me crazy for quite some time now 😞
Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
26 | |
21 | |
20 | |
13 | |
12 |
User | Count |
---|---|
40 | |
27 | |
27 | |
21 | |
19 |