Forum Discussion
LyonsBI_BRL
5 years agoHelper III
Map Data Labels - Count Number of Entries Per State
I'm looking to setup a Calculated Column so that when I turn on Category labels for the MAP within PowerBI it displays the name of the State (i.e. Queensland, South Australia), it'll display the name...
- 5 years ago
Found out how to accomplish this!
So if you are attempting to calculate values outside of it being a number there is a way to do this.
Number of Submissions Per State = 'All Applicants'[SchoolState] & ": " & CALCULATE(COUNTA('All Applicants'[SchoolState]), ALLEXCEPT('All Applicants', 'All Applicants'[SchoolState]))This in turn will calculate the number of times a particular item shows up within that State, Employee, Location etc.
LyonsBI_BRL
5 years agoHelper III
Found out how to accomplish this!
So if you are attempting to calculate values outside of it being a number there is a way to do this.
Number of Submissions Per State =
'All Applicants'[SchoolState] & ": " &
CALCULATE(COUNTA('All Applicants'[SchoolState]),
ALLEXCEPT('All Applicants', 'All Applicants'[SchoolState]))
This in turn will calculate the number of times a particular item shows up within that State, Employee, Location etc.