Forum Discussion

Aman-K's avatar
Aman-K
Helper III
1 year ago
Solved

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  I need the report to look like as below. Can you please advise what change...
  • Kedar_Pande's avatar
    Kedar_Pande
    1 year ago

    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