Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I've the following report https://1drv.ms/u/s!Amd7BXzYs7AVlx7RRKcucc1TBZ1F?e=v3mDNM
I've an issue with the total, how to correct it please?
Solved! Go to Solution.
Another solution (if you're expecting a lot of combinations).
Your unpivoting should include Origination Credit USD. Then a table looks like this. You can also add Correct ColumNames check to make it easier:
Correct ColumnNames =
AND(
RELATED('Table'[ColumnNames])=[ColumnNames];
RELATED('Table'[Originator])=Factsales_copy[Originator]
)
Then the formula looks like this:
Correct totals 2 =
SUMX(
FILTER(Factsales_copy;Factsales_copy[Correct ColumnNames]=TRUE);
Factsales_copy[Value] * Factsales_copy[Origination Credit USD]
)
Proud to be a Super User!
Ok, but in the sample data that you've provided [Origination Credit USD] is in the table. Anyway - this will still works fine. 🙂 Just change the refference from column to measure that you have.
Proud to be a Super User!
Another solution (if you're expecting a lot of combinations).
Your unpivoting should include Origination Credit USD. Then a table looks like this. You can also add Correct ColumNames check to make it easier:
Correct ColumnNames =
AND(
RELATED('Table'[ColumnNames])=[ColumnNames];
RELATED('Table'[Originator])=Factsales_copy[Originator]
)
Then the formula looks like this:
Correct totals 2 =
SUMX(
FILTER(Factsales_copy;Factsales_copy[Correct ColumnNames]=TRUE);
Factsales_copy[Value] * Factsales_copy[Origination Credit USD]
)
Proud to be a Super User!
Thank you for your reply, in the real project, the origination credit usd is a compex measure from different tables.
Ok, but in the sample data that you've provided [Origination Credit USD] is in the table. Anyway - this will still works fine. 🙂 Just change the refference from column to measure that you have.
Proud to be a Super User!
The question is: how many combinations you have in your data? If it's like in this sample onlr 4 columns then I suggest not to duplicate factsales and use one measure:
Correct totals =
SUMX(
Factsales;
SWITCH(RELATED('Table'[ColumnNames]);
"CF_ZK";[CF_ZK];
"CF_SH";[CF_SH];
"CF_GOS";[CF_GOS];
"CF_EFY";[CF_EFY])*Factsales[Origination Credit USD])
Tell me if you're expecting a lot of columns with values and originators - then I will prepare different solution for you.
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
81 | |
53 | |
37 | |
37 |