Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello good people,
Need your help.
I have the following table.
All the columns are calculated columns. I want to have a "Total" which excludes "Gross Profit". Currently it is counting the "Gross Profit" inside the "Total". I want to keep it excluded. Please help.
Solved! Go to Solution.
Hi @Anonymous
You can adjust the below Measure to get the required result.
Sales Total without Contoso =
VAR __totalWithoutContoso =
CALCULATE(
[Sales],
KEEPFILTERS(
NOT 'Product'[Brand] = "Contoso"
)
)
RETURN
IF(
HASONEVALUE( 'Product'[Brand] ),
[Sales],
__totalWithoutContoso
)
@Anonymous , Try like
Total New =calculate([Total],Table[MOH COA Level 6]!="Gross Profit")
or
Total New = if(isfiltered(Table[MOH COA Level 6]),[Total],calculate([Total],Table[MOH COA Level 6]!="Gross Profit"))
refer
https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
Hi @Anonymous
You can adjust the below Measure to get the required result.
Sales Total without Contoso =
VAR __totalWithoutContoso =
CALCULATE(
[Sales],
KEEPFILTERS(
NOT 'Product'[Brand] = "Contoso"
)
)
RETURN
IF(
HASONEVALUE( 'Product'[Brand] ),
[Sales],
__totalWithoutContoso
)
Thanks a lot man. Your solution is precise and to the point 😀
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |