cancel
Showing results for 
Search instead for 
Did you mean: 
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])

Helpful resources

Announcements
Exciting changes

Power BI Community Changes

Check out the changes to the Power BI Community announced at Build.

May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Kudo Data Story carousel

Data Stories Gallery

Visit our Data Stories Gallery and give kudos to your favorite Data Stories.

Top Solution Authors