cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors