Forum Discussion

hitesh160790's avatar
hitesh160790
Frequent Visitor
6 years ago
Solved

Summarize results

I have a data model with 3 tables   1) ForecastPlan Product No Forecast Plan 1 10 2 20   2) fact   Product No Diet Qty Needed (a) 1 Veg 20 2 Veg 30 3 N Veg 1...
  • v-xuding-msft's avatar
    v-xuding-msft
    6 years ago

    Hi hitesh160790 ,

     

    I have created a sample. I'm not clear how you want to show. 

     

    If you want to show in table visual,  please try this:

    Measure = SUM('Fact'[Qty Needed (a)])* SUM(ForecastPlan[Forecast Plan])
    
    Measure 2 = SUMX(ALLEXCEPT('Fact','Fact'[Diet]),[Measure])

     

    If you do it in matrix visual, please try:

    Measure 3 = SUMX('Fact',[Measure])

     

    For more details, please see the attachment.