Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello,
The Task is to append 3 queries, filter [Area Responsable]= "Tintoreria" and [Disposición] <> "Aprobado", after this if duplicate "Lote" leave earliest result ( no duplicates)
I have been able to append the queries:
let
Source = Table.Combine({PNC_TELA, PNC_PARTES_CORTADAS, TONO_MALO}),
#"Removed Other Columns" = Table.SelectColumns(Source,{"Fecha de Ingreso", "Lote", "Defecto 1", "Disposición", "Proceso Responsable"}),
#"Changed Type" = Table.TransformColumnTypes(#"Removed Other Columns",{{"Fecha de Ingreso", type date}})
in
#"Changed Type"
One more question, Can I add a column to wach row telling me from which Database that line is from?
Thank you
Solved! Go to Solution.
You can sort on date and than remove duplicates as illustrated in this short video.
@ratercero wrote:
Hello,
The Task is to append 3 queries, filter [Area Responsable]= "Tintoreria" and [Disposición] <> "Aprobado", after this if duplicate "Lote" leave earliest result ( no duplicates)
I have been able to append the queries:
let Source = Table.Combine({PNC_TELA, PNC_PARTES_CORTADAS, TONO_MALO}), #"Removed Other Columns" = Table.SelectColumns(Source,{"Fecha de Ingreso", "Lote", "Defecto 1", "Disposición", "Proceso Responsable"}), #"Changed Type" = Table.TransformColumnTypes(#"Removed Other Columns",{{"Fecha de Ingreso", type date}}) in #"Changed Type"
One more question, Can I add a column to wach row telling me from which Database that line is from?
Thank you
For the last question, you can add a column valuing the database name in each table before combining them.
For the first question, could you please post some sample data for the 3 tables and expected output?
Any ideas anyone else?
@ratercero: the question was already answered by @Eric_Zhang:
"For the last question, you can add a column valuing the database name in each table before combining them."
Translated into code, e.g.:
let
Source1 = Table.AddColumn(PNC_TELA, "Source", each "PNC_TELA"),
Source2 = Table.AddColumn(PNC_PARTES_CORTADAS, "Source", each "PNC_PARTES_CORTADAS"),
Source3 = Table.AddColumn(TONO_MALO, "Source", each "TONO_MALO"),
Source = Table.Combine({Source1, Source2, Source3}),
#"Removed Other Columns" = Table.SelectColumns(Source,{"Fecha de Ingreso", "Lote", "Defecto 1", "Disposición", "Proceso Responsable", "Source"}),
#"Changed Type" = Table.TransformColumnTypes(#"Removed Other Columns",{{"Fecha de Ingreso", type date}})
in
#"Changed Type"
Hello @MarcelBeug,
I used @Eric_Zhang recomendation and this is my code:
let
Source1 = Table.AddColumn(PNC_TELA, "Source", each "PNC_TELA"),
Source2 = Table.AddColumn(PNC_PARTES_CORTADAS, "Source", each "PNC_PARTES_CORTADAS"),
Source3 = Table.AddColumn(TONO_MALO, "Source", each "TONO_MALO"),
Source = Table.Combine({Source1, Source2, Source3}),
#"Removed Other Columns" = Table.SelectColumns(Source,{"Fecha de Ingreso", "Lote", "Defecto 1", "Disposición", "Proceso Responsable", "Source"}),
#"ChangedType" = Table.TransformColumnTypes(#"Removed Other Columns",{{"Fecha de Ingreso", type date}}),
#"Filtered Table" =Table.SelectRows(ChangedType, each [Proceso Responsable] = "Tintoreria" and [Disposición]<>"Aprobado" )
in
#"Filtered Table"
It partially works for my final objective since I need to only the first time a batch # shows and
[Proceso Responsable] = "Tintoreria" and [Disposición]<>"Aprobado"
, if it repeats with another defects the current code is leaving that entry too.
You can sort on date and than remove duplicates as illustrated in this short video.
No: just add these steps to your query, so it will be part of the refresh.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 51 | |
| 41 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 123 | |
| 109 | |
| 47 | |
| 30 | |
| 25 |