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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
jneuey5
Frequent Visitor

Multiple Dates in a Row

Hello, 

I'm trying to get the earliest date in a row that has five different dates and or blanks. Is there a way through DAX or M to get this date into it's own column. It appears Earlier and Earliest only work on columns


Thanks


1 REPLY 1
FreemanZ
Super User
Super User

hi @jneuey5 

try like:

Column = 
MAX(
   [date1],
   MAX(
        [date2],
        MAX(
            [date3],
            MAX([date4], [date5])
        )
     )
)

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.