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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
mj2024
Helper II
Helper II

How to add a single number summary at the top of a dashboard?

Hi

I have a number of visuals where I have to know the latest value for. The approach I have been taking is using my mouse and hovering over the latest value to get the value.  This isn't ideal for me.  I would like to create a single number summary.  I have seen single number summaries on dashboards but I do not know what they are called.  What are they called? Here are some examples I found online:

Screenshot 2024-12-24 185004.pngScreenshot 2024-12-24 184912.pngScreenshot 2024-12-24 184846.png

 

How do I create these?

 

Thank you

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @mj2024 ,

Based on the description, creating the measure to get the latest value. Using the LASTDATE function to get the last date.

Latest date number = 
CALCULATE(
    MAX('Table'[Number]),
    FILTER(
        'Table',
        'Table'[Date] = LASTDATE('Table'[Date])
        //'Table'[Date] = MAX('Table'[Date])
    )
)

Then, drag the measure to the card visual.

vjiewumsft_0-1735176988464.png

vjiewumsft_1-1735177014710.png

Pin the visual to the dashboard and move the tile to the top of the dashboard.

vjiewumsft_2-1735177334197.png

 

You can also view the following links to learn more information.

LASTDATE function (DAX) - DAX | Microsoft Learn

Solved: How to get value from last date (most recent) by c... - Microsoft Fabric Community

Solved: Show latest value on card - Microsoft Fabric Community

 

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @mj2024 ,

Based on the description, creating the measure to get the latest value. Using the LASTDATE function to get the last date.

Latest date number = 
CALCULATE(
    MAX('Table'[Number]),
    FILTER(
        'Table',
        'Table'[Date] = LASTDATE('Table'[Date])
        //'Table'[Date] = MAX('Table'[Date])
    )
)

Then, drag the measure to the card visual.

vjiewumsft_0-1735176988464.png

vjiewumsft_1-1735177014710.png

Pin the visual to the dashboard and move the tile to the top of the dashboard.

vjiewumsft_2-1735177334197.png

 

You can also view the following links to learn more information.

LASTDATE function (DAX) - DAX | Microsoft Learn

Solved: How to get value from last date (most recent) by c... - Microsoft Fabric Community

Solved: Show latest value on card - Microsoft Fabric Community

 

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you so much @Anonymous !!  It worked.

Bibiano_Geraldo
Super User
Super User

Hi @mj2024 ,

This is called Card Visual, you can learn more here

 

Bibiano_Geraldo_0-1735106096887.png

 

elitesmitpatel
Super User
Super User

Use blank Buton , and then add measure to the blank button and you can apply below action  mentioned in image

elitesmitpatel_0-1735096993251.png


If it helps Kudos to work and Accept it as Solution.

Thanks for that.  I am new to PowerBI.  I am not too familiar with measures.  All of the data has dates with them.  I need to show the latest value for a particular field in a table.  How would I do this?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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