Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I want to create a Power BI report based on a sql view with nested SQL select queries.
In this report I have two slicers for selecting datetime( from datetime1 to datetime2 and it has this fomat: '2023-04-09 08:20:30'.
these two values selected from slicers in report would be passed to SQL view to return a table with different values(within these two datetimes from slicers).
Here is a part of sql view as example.
Or is there a better way than SQL view to create report for this scenario?
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 43 | |
| 36 | |
| 32 |