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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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,
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 51 | |
| 39 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 79 | |
| 37 | |
| 27 | |
| 25 |