Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ilui
Frequent Visitor

New Measure similar to SumIf

I'm new to Power BI so this one would be easy I think. I'd like to show a calculation on "Total Commit" and "Total Pipeline" in our forecast. Data is organised like below

RegionOpportunityForecastStage
AUOpportunity 1 $        1,000COMMIT
AUOpportunity 2 $        2,000COMMIT
NZOpportunity 3 $        3,000FUNNEL
AUOpportunity 4 $        4,000COVER
NZOpportunity 5 $        5,000COMMIT
NZOpportunity 6 $        6,000FUNNEL


End Result
Total Commit = $8,000 (ie stage = Commit)
Total Pipeline = $21,000 (All stages)

I want to show in Matrix and Bar visual the 2 values together. 

 Total Commit Total Pipleine 
AU $                               3,000 $                   7,000
NZ $                               5,000 $                 14,000
  $                               8,000 $                 21,000


 Please help!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@ilui ,

Have two measures like

Total Commit = calculate(sum(Table[Forecast]), stage[Stage] ="COMMIT")
Total Pipeline =calculate(sum(Table[Forecast]), stage[Stage] <> "COMMIT")

 

Or have new column like

Stage Type =if(stage[Stage] ="COMMIT","COMMIT","Pipeline")

you can stage Type  as column or legend (in Bar).

 

https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@ilui ,

Have two measures like

Total Commit = calculate(sum(Table[Forecast]), stage[Stage] ="COMMIT")
Total Pipeline =calculate(sum(Table[Forecast]), stage[Stage] <> "COMMIT")

 

Or have new column like

Stage Type =if(stage[Stage] ="COMMIT","COMMIT","Pipeline")

you can stage Type  as column or legend (in Bar).

 

https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/

Thank you!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.