Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am new to Power BI and I need to find total value for each name and then count the names where total value is more than 10 in power BI. I am struggling to find a correct solution. I am caluclting this value for past 12 month for which I have set a relative date filter.
Name | Date | Value |
a | 10-01-2018 | 2 |
b | 12-01-2018 | 3 |
a | 18-01-2018 | 5 |
a | 08-10-2017 | 8 |
c | 10-10-2017 | 10 |
c | 20-07-2017 | 2 |
The result of this should be 2 as a and c have values greater than 10.
Solved! Go to Solution.
Two measures:
Total Value = SUM('#aTable'[Value]) Count Above 10 = COUNTROWS(FILTER(SUMMARIZE('#aTable','#aTable'[Name ],"TotalValue",[Total Value]),[TotalValue]>10))
Two measures:
Total Value = SUM('#aTable'[Value]) Count Above 10 = COUNTROWS(FILTER(SUMMARIZE('#aTable','#aTable'[Name ],"TotalValue",[Total Value]),[TotalValue]>10))
Thanks a lot Greg, this was exactly what I wanted.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |