Forum Discussion

nishthabhakta's avatar
nishthabhakta
Regular Visitor
3 years ago
Solved

Calculation for quarters

I am trying to get numbers for quarters. I have a column that undicates return ratios. Return Ratio=Return Items/Originated Items. I have made a new column named 'Column' to get row wise return rati...
  • nishthabhakta's avatar
    3 years ago

    Hi Greg_Deckler ! I was able to solve the problem. I made a new measure with following formula :

    Quarterly Average = CALCULATE(SUM('April 2021'[ReturnItem])/SUM('April 2021'[Originated])*100,ALLEXCEPT('April 2021','April 2021'[Date].[Quarter],'April 2021'[Date].[Year],'April 2021'[ProgramName],'April 2021'[ReturnItem],'April 2021'[Originated])) 
    The above formula's output is as expected. I checked with calculating manually