Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a table contains the following columns in addition to many
The ActivityDate is used in a slicer
I need to calculate the disticntcount of Account names that have more than 1 activity subject to the selected period in ActivityDate slicer
| Account Name | ActivityDate |
| Account A | 1/1/2020 |
| Account A | 1/7/2020 |
| Account A | 1/8/2020 |
| Account A | 1/1/2021 |
| Account B | 1/1/2019 |
| Account B | 1/1/2020 |
| Account B | 1/7/2020 |
| Account C | 1/1/2018 |
| Account C | 1/1/2020 |
| Account C | 1/7/2020 |
| Account C | 1/9/2020 |
| Account C | 1/10/2020 |
| Account D | 1/1/2020 |
Mainly I tried the following
SUMMARIZE(
Activities,
Activities[Account Name],
"ActivitiesCount",COUNTA(KinzActivities[Account Name]
)but I didn't know how to filter the resulted table according to the calculated column "ActivitiesCount"
Solved! Go to Solution.
| Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
| Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Actually I dont see how it will work!
I need to calculate the accounts that have more than 1 activity within the a selectedperiod
If I selected 2020 year, it should return 3 not 4
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 41 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 61 | |
| 45 |