Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hola Comunidad
Necesito su ayuda por favor para crear una nueva columna en la tabla UNO que integre la fecha de la columna creation y cuando encuentre valores nulos insertar las fechas del campo creation de la tabla DOS.
Anexo imagen con el ejemplo.
De antemano gracias
Solved! Go to Solution.
@Plastichunches , A new column in UNO
If(isblank(UNO[Creation]), maxx(filter(DOS, DOS[ID_A] = UNO[ID_A]), DOS[Creation]) ,UNO[Creation])
Muchas gracias por tu ayuda.
@Plastichunches , A new column in UNO
If(isblank(UNO[Creation]), maxx(filter(DOS, DOS[ID_A] = UNO[ID_A]), DOS[Creation]) ,UNO[Creation])