The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I need some help how to calculate to the right chart only the positive values that are in the left chart.
In the left chart I have used measure = [Expenses] - [BM expenses] and then I can filter the negative values.
But how can I add only these positive values to the right chart? Now it shows the sum of total amount of the measure.
Thank you in advance
Solved! Go to Solution.
Hi @Tiitti7 ,
Please try:
New measure =
SUMX (
FILTER ( ALLSELECTED ( 'TABLENAME' ), [measure in left chart] > 0 ),
[measure in left chart]
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Tiitti7 ,
Please try:
New measure =
SUMX (
FILTER ( ALLSELECTED ( 'TABLENAME' ), [measure in left chart] > 0 ),
[measure in left chart]
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.