Forum Discussion
Per 1000 per month
Hello,
I am trying something simular. I have a list with classifications but I need those per month per 1000 sectors . The per month separation works fine but I do not know how to get in the per 1000. In Excel I was able to do it with = (number of classification)*1000/(real number of sectors) but when I use this in BI the result is empty.
In fact I want to show my amount of classification per month per 1000 sectors in a graph.
Thanks for any assistance.
12 Replies
- Greg_Deckler
Community Champion
Can you provide some sample data?
- AlexChen
Microsoft Employee
Hi,
I assume your first table called “accident” and the second table called “flights”.
I changed the records in these 2 table in order to give an example.
First, You need to build a relationship between accident[month] and flights[Month].
Now You can add a calculated column to calculate the value:
Column = DIVIDE(CALCULATE(COUNTA(accident[classification]), RELATEDTABLE(accident)) * 1000, [TTL])
This is the result:
Best Regards
Alex