This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I've an order table in which some of orders has been created in different time but on the same day:
| Ordernr | Orderdate |
| order1 | 2020-11-23 10:20 |
| order2 | 2020-11-23 10:27 |
| order3 | 2020-11-23 10:39 |
| order4 | 2020-11-24 14:29 |
| order5 | 2020-11-24 14:37 |
In slicer it shows all dates with different time but I want to show only dates so when I select that date all orders would be listed in table. In this example instead of showing all dates in slicer I want to show only two dates:
2020-11-23
2020-11-24If I select 2020-11-23 in slicer , then show order1,order2, and order3 in report.
Solved! Go to Solution.
@Anonymous , Create a date column without timestamp and use that.
Date = [Orderdate].date
or
Date = date(year([Orderdate]),month([Orderdate]),day([Orderdate]))
You can also use distinctcount(Table[Date])
or
distinctcount(Table[Ordernr]) measures in visual
@Anonymous , Create a date column without timestamp and use that.
Date = [Orderdate].date
or
Date = date(year([Orderdate]),month([Orderdate]),day([Orderdate]))
You can also use distinctcount(Table[Date])
or
distinctcount(Table[Ordernr]) measures in visual
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |