Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Aman-K
Helper III
Helper III

Power BI Report using Google Analytics data

Hi All,

 

The Power bI report which I have craeted as below doesn't show minutes on Y axis in the descending order 

AmanK_0-1727784567625.png

I need the report to look like as below. Can you please advise what changes need to be made to get the below result?

AmanK_1-1727784657212.png

 

1 ACCEPTED 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

View solution in original post

6 REPLIES 6
Aman-K
Helper III
Helper III

I think I will need to add a measure to show data for last 30 minutes first. Can you help me with that please?

AmanK_0-1727786044559.png

 

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

AmanK_0-1727788318930.png

My Power BI report looks like this at the moment

AmanK_2-1727788556478.png

 

 

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

Kedar_Pande
Super User
Super User

@Aman-K please share the sample pbix file

rubayatyasmin
Super User
Super User

Hi, @Aman-K 

try using sort by column option. choose the right column to sort. Try the way we use to display month column 

rubayatyasmin_0-1727784837396.png

 


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors