Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
hola
Ayuda para convertir SQl a DAX
seleccione j.Col1, j.Col2 , (seleccione Min(Col2) de Table1 donde Col1 = j.Col1 y Col2 > j.Col2) como Col3
de la Tabla 1 j
La tabla1 tiene las siguientes columnas:- Col1 int, Col2 date
Solved! Go to Solution.
@jaigupta78 , una nueva columna
minx(filter(Table, [Col1] =earlier([Col1]) && [Col2] >earlier([Col2])), [Col2])
@jaigupta78 , una nueva columna
minx(filter(Table, [Col1] =earlier([Col1]) && [Col2] >earlier([Col2])), [Col2])
Gracias Amit