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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Sparkeltje
Frequent Visitor

Need help with dax formule (lastdate?)

Could you help me to show 1 result in visual CARD:

All I want to see is the latest period from the filters FK-DB and TEXT1  (For example: from the table below I would like to see  6.)

 

Table

FK_DBDescriptionPeriodDate
OHText 1430-04-2020
OHText 1630-06-2020
OHText 2424-04-2020
OHText 2730-06-2020

 

 

1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @Sparkeltje ,

 

If you have more values for the columns FK-DB and Description, you may need to use a filter in this measure, like:

 

CALCULATE(MAX(TABLE[PERIOD]), FILTER(ALL(TABLE), TABLES[FK-DB] = "OH" && Description = "Text 1"))



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Sparkeltje , Try like

lastnonblankvalue(Table[Date],max(Table([Period])))

 

refer

https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
camargos88
Community Champion
Community Champion

Hi @Sparkeltje ,

 

If you have more values for the columns FK-DB and Description, you may need to use a filter in this measure, like:

 

CALCULATE(MAX(TABLE[PERIOD]), FILTER(ALL(TABLE), TABLES[FK-DB] = "OH" && Description = "Text 1"))



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



AntrikshSharma
Super User
Super User

Measure =
CALCULATE ( MAX ( Spark[Period] ), ALLSELECTED ( Spark ) )

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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

Top Kudoed Authors