Forum Discussion
singhranjeet101
3 years agoFrequent Visitor
Count Values at the Firm Level not at office level
Hi Team, I have got a data set which includes three columns Clients Name | Offices | Revenue I am looking to count the clients which have a revenue of more than 1M But when i try to count using th...
- 3 years ago
singhranjeet101
3 years agoFrequent Visitor
Hi Ashish, Following up on the same scenario. I also want to sum the name which has a revenue of greater than 1M. I am able to do it on a firm's level but when apply a office filter i get wrong sum of revenue by office.
Below is the Dax im using.
Clients Rev >1M =
CALCULATE
(
SUM([Rev]),
FILTER(
Values(
'Data'[Name]),
'Data'[Rev] >= 1000000
)
)
I was wonderinf if you could help?
Thanks
Ashish_Mathur
Super User
3 years agoHi,
Share some data and clearly show the expected result.