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 nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi All,
The Power bI report which I have craeted as below doesn't show minutes on Y axis in the descending order
I need the report to look like as below. Can you please advise what changes need to be made to get the below result?
Solved! Go to Solution.
Create a Measure to Count Entries Within the Last 30 Minutes
CountLast30Minutes =
COUNTROWS(
FILTER(
YourTable,
YourTable[Minutes] <= 30
)
)
you can place it in a card visual to display the count of entries within the last 30 minutes.
Your Kudos/Likes are much appreciated!
If this post helps, please consider Accepting it as the solution to help the other members find it more quickly.
Regards,
Kedar Pande
www.linkedin.com/in/kedar-pande
I think I will need to add a measure to show data for last 30 minutes first. Can you help me with that please?
Create a new column:
IsWithinLast30Minutes =
IF(
YourTable[Minutes] > 30,
1,
0
)
Now, apply a visual filter: Drag the IsWithinLast30Minutes column to the Filters pane and set it to show only 1
Thanks @Kedar_Pande . Also how can I display the total active users as below
My Power BI report looks like this at the moment
Create a Measure to Count Entries Within the Last 30 Minutes
CountLast30Minutes =
COUNTROWS(
FILTER(
YourTable,
YourTable[Minutes] <= 30
)
)
you can place it in a card visual to display the count of entries within the last 30 minutes.
Your Kudos/Likes are much appreciated!
If this post helps, please consider Accepting it as the solution to help the other members find it more quickly.
Regards,
Kedar Pande
www.linkedin.com/in/kedar-pande
Hi, @Aman-K
try using sort by column option. choose the right column to sort. Try the way we use to display month column
Proud to be a Super User!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 26 | |
| 24 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 20 | |
| 20 | |
| 19 |