cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
sirmehran
Regular Visitor

how to calculate SUM of Increase and decrease and summary of all

Hello 

I have a table with amonth of order for each item (F[Value]) and the date of order (conceted to DIMDATE Table) , I needed to calulated sum of orders in selected month and it's prior month , so I did below measures :

 

 Total = SUM(F[Value])

Prior Month Forecast = CALCULATE([Total], PREVIOUSMONTH(DimDate[Date]))
 
and I have Incease and decresed and total changed 
Increase the Quantity =  VAR PrevMonthOrder = [Prior Month Forecast]
    RETURN
        IF(SUM(F[Value]) > PrevMonthOrder,CALCULATE( SUM(F[Value]) - PrevMonthOrder), BLANK())
 
Decrease the Quantity =    VAR PrevMonthOrder = [Prior Month Forecast]
    RETURN
        IF(SUM(F[Value]) < PrevMonthOrder,CALCULATE( SUM(F[Value]) - PrevMonthOrder), BLANK())
 
 
Forecast Quantity Changed = VAR PrevMonthOrder = [Prior Month Forecast]
    RETURN
 
        SUM(F[Value])- PrevMonthOrder

 in the abouve table for header there is not any sum because my measures calulated them separatly . 

 

Now , I need to calulate Sum of all increased and decreased and changes , I know that would be some row 

 

 

 


 all the increase and decreasing without considering the top headers.

I know that might be a row context calulation , but I dont know how I should apply it .

 
1 ACCEPTED SOLUTION

I found answere: 
I have used this for decreasing : 

SUMX(FILTER(ALLSELECTED('Forecasting Folder'[PartNo]),[Forecast Quantity Changed]<0),[Forecast Quantity Changed])
and this one for increaseing : SUMX(FILTER(ALLSELECTED('Forecasting Folder'[PartNo]),[Forecast Quantity Changed]>0),[Forecast Quantity Changed])

View solution in original post

3 REPLIES 3
nelsonwynn
Frequent Visitor

Hello,

I also want to know answer about these question. I'm now occuring the same problem.

Thank you.

I found answere: 
I have used this for decreasing : 

SUMX(FILTER(ALLSELECTED('Forecasting Folder'[PartNo]),[Forecast Quantity Changed]<0),[Forecast Quantity Changed])
and this one for increaseing : SUMX(FILTER(ALLSELECTED('Forecasting Folder'[PartNo]),[Forecast Quantity Changed]>0),[Forecast Quantity Changed])

Thank you so much. I'll try with your instruction.

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors