Forum Discussion
Naveeduddinj077
3 years agoRegular Visitor
Cumulative Sum Division
Hi Team, Is it possible to divide a coulum number by sum of other column year wise? I want to know how to get the Yellow highlighted F & G Columns from the below link. https://docs.google.com...
- 3 years ago
Hi Naveeduddinj
Are you creating a mesure with the DAX? If yes, try replacing EARLIER function with MAX function.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
v-jingzhang
3 years agoCommunity Support
You can create two calculated columns with below DAX in your original table
Renewal % = DIVIDE('Table'[Existing],CALCULATE(SUM('Table'[New]),ALL('Table'),'Table'[Calendar Year]<EARLIER('Table'[Calendar Year])))Renewal % 2 = DIVIDE('Table'[Existing],CALCULATE(SUM('Table'[Total]),ALL('Table'),'Table'[Calendar Year]=EARLIER('Table'[Calendar Year])-1))
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Naveeduddinj
3 years agoRegular Visitor
- v-jingzhang3 years agoCommunity Support
Hi Naveeduddinj
Are you creating a mesure with the DAX? If yes, try replacing EARLIER function with MAX function.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.- Naveeduddinj3 years agoRegular Visitor
Awesome! This works Thank you