Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Buenos dias, quisiera de su ayuda para poder realizar un filtro donde pueda identificar si las columnas difieren o son iguales.
Ejemplo.
Datos Viejos
1- 12345
2- 44444
3- 55555
4- 33333
Datos Nuevos
1- 12345
2- 33333
3- 55555
4- 88888
Quisiera hacer estos dos casos por favor:
a) Comparar la columna datos viejos con datos nuevos, seria como hacer un velookup y poder identificar que valor no tengo en el siguiente campo.
b) Poder ver si la linea 1 es igual a la linea 2
Solved! Go to Solution.
Hi @Anonymous,
Go to query editor and add an index column in each table (dataset),as you see below:
Then choose merge as new to create a merged table:
Finally create a calculated column and you will see:
Column = IF('Merge1'[Column1]='Merge1'[Table (2).Column2],"same","different")
Or create a measure and you will see:
Measure = IF(MAX('Merge1'[Column1])=MAX('Merge1'[Table (2).Column2]),"same","different")
Here is the sample .pbix file you can refer to.
Hi @Anonymous,
Go to query editor and add an index column in each table (dataset),as you see below:
Then choose merge as new to create a merged table:
Finally create a calculated column and you will see:
Column = IF('Merge1'[Column1]='Merge1'[Table (2).Column2],"same","different")
Or create a measure and you will see:
Measure = IF(MAX('Merge1'[Column1])=MAX('Merge1'[Table (2).Column2]),"same","different")
Here is the sample .pbix file you can refer to.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 63 | |
| 31 | |
| 30 | |
| 23 |