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 August 31st. Request your voucher.

Reply
tatac1412
Helper I
Helper I

Encontrar la fecha mínima entre varias columnas

Holaaa, necesito ayuda en sacar la fecha min entre 4 columnas. El ejemplo sería:

primera fecha        segundafecha   tercera fecha   cuartafecha

2018/03/05            2015/05/20       2011/04/05     2021/02/15

 

El resultado entre la cuatro columnas debe de arrojar 2011/04/05, 

Agradezco la ayuda.

Gracias

2 ACCEPTED SOLUTIONS
v-yanjiang-msft
Community Support
Community Support

Hi @tatac1412 ,

According to your description, I create a sample.

vkalyjmsft_0-1659423991449.png

Here's my solution, create a measure.

Min =
VAR _T =
    UNION (
        VALUES ( 'Table'[Column1] ),
        VALUES ( 'Table'[Column2] ),
        VALUES ( 'Table'[Column3] ),
        VALUES ( 'Table'[Column4] )
    )
RETURN
    MINX ( _T, [Column1] )

Get the correct result.

vkalyjmsft_1-1659424065709.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

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

Hi @tatac1412 ,

Do you mean if there is a column has blank value like this:

vkalyjmsft_0-1661478645053.png

By my test it does not affect the final result, it still get the min value in this scenario.

vkalyjmsft_1-1661478751147.png

Best Regards,
Community Support Team _ kalyj

View solution in original post

6 REPLIES 6
v-yanjiang-msft
Community Support
Community Support

Hi @tatac1412 ,

According to your description, I create a sample.

vkalyjmsft_0-1659423991449.png

Here's my solution, create a measure.

Min =
VAR _T =
    UNION (
        VALUES ( 'Table'[Column1] ),
        VALUES ( 'Table'[Column2] ),
        VALUES ( 'Table'[Column3] ),
        VALUES ( 'Table'[Column4] )
    )
RETURN
    MINX ( _T, [Column1] )

Get the correct result.

vkalyjmsft_1-1659424065709.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

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

Muchas gracias por la solución, me puedes indicar también es esa medida como hago para que si en alguna de esas columnas esta vacia no tome ese campo como menor fecha??

 

Min =
VAR _T =
    UNION (
        VALUES ( 'Table'[Column1] ),
        VALUES ( 'Table'[Column2] ),
        VALUES ( 'Table'[Column3] ),
        VALUES ( 'Table'[Column4] )
    )
RETURN
    MINX ( _T, [Column1] )

porque tengo campos vacios y la formula los arroja como fecha menor.

 

Gracias

Hi @tatac1412 ,

Do you mean if there is a column has blank value like this:

vkalyjmsft_0-1661478645053.png

By my test it does not affect the final result, it still get the min value in this scenario.

vkalyjmsft_1-1661478751147.png

Best Regards,
Community Support Team _ kalyj

Muchas gracias por la solución, te pregunto si en una de esas 4 columnas de fechas hay por ejemplo 1800/01/01 como fecha comodín como hago para que la función no la tome como fecha minima sino que coja otra fecha ; ejemplo colum 1(2001/08/05)   colum2( 2011/04/17)  colum3(1800/01/01 ) colum4(2022/05/09)

el resultado será 2001/08/05. Agradezco la ayuda. gracias

amitchandak
Super User
Super User

@tatac1412 , Try

Minx({[Col1],[Col2],[Col3],[Col4]}, [Value])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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