Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Syndicate_Admin
Administrator
Administrator

Culpable de implementar la unión izquierda a un subconjunto de la tabla

Tengo estas dos tablas:

KylieF_1-1709607920822.png

Quiero implementar algo equivalente a eso en SQL:

select table1.EnrolmentLead_Key, table1.child_last_name, table2.guardian_last_name
from table1
left join table2 on table1.EnrolmentLead_Key = table2.EnrolmentLead_Key and table2.is_primary = 'True'

Y el resultado esperado es como:

KylieF_2-1709608114431.png

La cuestión es cómo implementar en Power BI para seleccionar los datos de un modelo semántico. Si lo hago:

Cualquiera de los dos:

KylieF_3-1709608232160.png

O

KylieF_4-1709608305032.png

Ninguno de los dos funciona.

1 REPLY 1
Syndicate_Admin
Administrator
Administrator

Hola @KylieF ,

Los datos de la tabla se muestran a continuación:

vzhouwenmsft_0-1709706922427.png

'is_primary': El tipo de datos es 'text'

vzhouwenmsft_1-1709706996050.png

Siga estos pasos:
1. Use la siguiente expresión DAX para crear una tabla

Table = SUMMARIZE ( 'Table1',
'Table1'[EnrolmentLead_Key],'Table1'[child_last_name],
"guardian_last_name",CALCULATE (MAX('Table2'[guardian_last_name]),'Table2'[EnrolementLead_Key] = EARLIER ( 'Table1'[EnrolmentLead_Key] ),'Table2'[is_primary] = "true" ))

2. Resultado final

vzhouwenmsft_2-1709707094350.png

vzhouwenmsft_4-1709707160307.png

Saludos
Wenbin Zhou
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors