Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I want to get some data when the user is using my power Bi-Project.
I mean for example: in my report, there is a slicer to filter the data in a specific period. In the same moment there is a card in my report using a measure, this measure needs to know how many quarters in the chosen time there ist to do some work.
I would be glad for any help!
Regards,
Solved! Go to Solution.
In this scenario, I assume you use a date slicer to select period. If you want to count quarters in selected period, you need to add a Quarter column in your table first.
Quarter = YEAR('Calendar'[Date]) & "Q" & ROUNDDOWN((MONTH('Calendar'[Date])-1)/3+1,0)
Then add a measure the distinct count Quarter column based on selected dates.
Measure = CALCULATE(DISTINCTCOUNT('Calendar'[Quarter]),ALLSELECTED('Calendar'[Date]))
Regards,
In this scenario, I assume you use a date slicer to select period. If you want to count quarters in selected period, you need to add a Quarter column in your table first.
Quarter = YEAR('Calendar'[Date]) & "Q" & ROUNDDOWN((MONTH('Calendar'[Date])-1)/3+1,0)
Then add a measure the distinct count Quarter column based on selected dates.
Measure = CALCULATE(DISTINCTCOUNT('Calendar'[Quarter]),ALLSELECTED('Calendar'[Date]))
Regards,
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 |
|---|---|
| 97 | |
| 74 | |
| 50 | |
| 47 | |
| 44 |