The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi. So i have a simple matrix with different periods and a balance sheet.
What i want is basically a goal seek: IF the total <> 0 , then add the value to this account row: Consolidado[Conta SAP] = 2610200100.
With this example: the 15.400.538 would add to the row where [Conta SAP] = 2610200100 is thus turning total = 0.
Thanks in advance
Solved! Go to Solution.
Hi @Gonqq ,
Here are the steps you can follow:
1. Create measure.
Measure =
CALCULATE(SUM('financials'[Profit]),FILTER(ALL(financials),'financials'[Segment]=MAX('financials'[Segment])&&'financials'[Month Number]=MAX('financials'[Month Number]))
)
Flag =
var _1=CALCULATE(SUM('financials'[Profit]),FILTER(ALL(financials),'financials'[Segment]=MAX('financials'[Segment])&&'financials'[Month Number]=MAX('financials'[Month Number]))
)
VAR _all =
CALCULATE(SUM('financials'[Profit]),FILTER(ALL(financials),'financials'[Month Number]=MAX('financials'[Month Number])))
return
IF(
ISINSCOPE('financials'[Segment])&&MAX('financials'[Segment])<>"Enterprise",_1,
IF(
'financials'[Measure]<>0&&MAX('financials'[Segment])<>"Enterprise",0, _1+_all
))
2. Result:
Please click here for the pbix file
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Gonqq ,
Here are the steps you can follow:
1. Create measure.
Measure =
CALCULATE(SUM('financials'[Profit]),FILTER(ALL(financials),'financials'[Segment]=MAX('financials'[Segment])&&'financials'[Month Number]=MAX('financials'[Month Number]))
)
Flag =
var _1=CALCULATE(SUM('financials'[Profit]),FILTER(ALL(financials),'financials'[Segment]=MAX('financials'[Segment])&&'financials'[Month Number]=MAX('financials'[Month Number]))
)
VAR _all =
CALCULATE(SUM('financials'[Profit]),FILTER(ALL(financials),'financials'[Month Number]=MAX('financials'[Month Number])))
return
IF(
ISINSCOPE('financials'[Segment])&&MAX('financials'[Segment])<>"Enterprise",_1,
IF(
'financials'[Measure]<>0&&MAX('financials'[Segment])<>"Enterprise",0, _1+_all
))
2. Result:
Please click here for the pbix file
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
User | Count |
---|---|
69 | |
66 | |
62 | |
48 | |
28 |
User | Count |
---|---|
112 | |
83 | |
66 | |
48 | |
43 |