Forum Discussion
Anonymous
7 years agoNot applicable
Simple Division Issue - Not so simple
Hello everyone, I'm facing an issue of simple divison for my graphs. Below on the left you see both values in their own graphs, on the right you see the divison. Now as you can see the...
- 7 years ago
HI, Anonymous
If what you had created is a new column, you should create a new measure
Try this formula:
Measure = DIVIDE(SUM('Table'[Value1]),SUM('Table'[Value2]))If not your case, please share your sample pbix file.
Best Regards,
Lin
v-lili6-msft
7 years agoCommunity Support
HI, Anonymous
If what you had created is a new column, you should create a new measure
Try this formula:
Measure = DIVIDE(SUM('Table'[Value1]),SUM('Table'[Value2]))
If not your case, please share your sample pbix file.
Best Regards,
Lin
Anonymous
7 years agoNot applicable
Amazing, this solved the issue! Had no idea I had to use the measure.
v-lili6-msft thanks!