Forum Discussion
Percentage Calculation between two tables
- 5 years ago
Hi YavuzDuran ,
Be sure that in both 2 tables have the column of MonthNo;
In your calendar table,also create a MonthNo column;
Then create a measure as below:
Measure = var _closedaccounts=CALCULATE(SUM('Table (2)'[Value]),FILTER(ALL('Table (2)'),'Table (2)'[Column]=MAX('Calendar'[MonthNo])&&'Table (2)'[Row]=MAX('Table (2)'[Row]))) var _totalsales=CALCULATE(SUM('Table'[# of Acts]),FILTER(ALL('Table'),'Table'[MonthNo]=MAX('Calendar'[MonthNo]))) Return DIVIDE(_closedaccounts,_totalsales)And you will see:(here I only take part of your sample data)
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
"Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s."
I have already done this, created a calender and put all relationships
and calculated a measure
% =
which is wrong
I need the percentage of the closed accounts / total sales (fixed for selected month)
so the numbers will be
1%
3%
2%
5% soething like this
not that much in above table
count('Loan Performance'[sales])
I need to free this denominator from the column parameters (1,2,3,..)
Should only be affected by the row values (Jan, Feb, Mar,...)
- YavuzDuran5 years agoHelper III
In other words,
I am trying to find the percentage of total row (total row of the second table (sales))
- v-kelly-msft5 years agoCommunity Support
Hi YavuzDuran ,
Be sure that in both 2 tables have the column of MonthNo;
In your calendar table,also create a MonthNo column;
Then create a measure as below:
Measure = var _closedaccounts=CALCULATE(SUM('Table (2)'[Value]),FILTER(ALL('Table (2)'),'Table (2)'[Column]=MAX('Calendar'[MonthNo])&&'Table (2)'[Row]=MAX('Table (2)'[Row]))) var _totalsales=CALCULATE(SUM('Table'[# of Acts]),FILTER(ALL('Table'),'Table'[MonthNo]=MAX('Calendar'[MonthNo]))) Return DIVIDE(_closedaccounts,_totalsales)And you will see:(here I only take part of your sample data)
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!