Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I have to write the below sql query in dataflows advance editor
SELECT P.PPRT.PART, P.PUSH.P_COLM_1_,P.PPRT.C_HARMZD_PRE,P.PPRT.C_SUFF
FROM P.PPRT, P.PUSH
WHERE CURRENT DATE Between P.PPRT.D_EFFCTV and P.PPRT.D_END
AND P.PPRTHS.C_CNTRY = 'US'
AND P.PPRTHS.C_PRE = P.PUSH.C_PRE
AND P.PPRT.C_SUFF = P.PUSH.C_SUFF
AND CURRENT DATE Between P.PUSH.D_EFFCTV and P.PUSH.D_END;
Please help me to get this
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
First, ensure both your tables ('P.PPRT' and 'P.PUSH') are loaded into Power Query. This can be done by using the 'Source' step to connect to your data source and then navigating to the respective tables.
For both tables, you'll need to filter rows where the current date falls between 'D_EFFCTV' and 'D_END'.
PPRT_Filtered = Table.SelectRows(PPRT, each Date.From(DateTime.LocalNow()) >= [D_EFFCTV] and Date.From(DateTime.LocalNow()) <= [D_END])
Repeat a similar step for the 'P.PUSH' table.
Use the 'Table.Join' function to perform an inner join between the 'PPRT_Filtered' and 'PUSH_Filtered' tables on the 'C_PRE' and 'C_SUFF' columns.
JoinedTables = Table.Join(PPRT_Filtered, {"C_PRE", "C_SUFF"}, PUSH_Filtered, {"C_PRE", "C_SUFF"}, JoinKind.Inner)
After joining, filter the rows where 'C_CNTRY' equals 'US'. Assuming 'C_CNTRY' is in the 'PPRT' table:
FinalTable = Table.SelectRows(JoinedTables, each [C_CNTRY] = "US")
Finally, select the columns you need ('PART', 'P_COLM_1_', 'C_HARMZD_PRE', 'C_SUFF') from the 'FinalTable'.
ResultTable = Table.SelectColumns(FinalTable, {"PART", "P_COLM_1_", "C_HARMZD_PRE", "C_SUFF"})
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
First, ensure both your tables ('P.PPRT' and 'P.PUSH') are loaded into Power Query. This can be done by using the 'Source' step to connect to your data source and then navigating to the respective tables.
For both tables, you'll need to filter rows where the current date falls between 'D_EFFCTV' and 'D_END'.
PPRT_Filtered = Table.SelectRows(PPRT, each Date.From(DateTime.LocalNow()) >= [D_EFFCTV] and Date.From(DateTime.LocalNow()) <= [D_END])
Repeat a similar step for the 'P.PUSH' table.
Use the 'Table.Join' function to perform an inner join between the 'PPRT_Filtered' and 'PUSH_Filtered' tables on the 'C_PRE' and 'C_SUFF' columns.
JoinedTables = Table.Join(PPRT_Filtered, {"C_PRE", "C_SUFF"}, PUSH_Filtered, {"C_PRE", "C_SUFF"}, JoinKind.Inner)
After joining, filter the rows where 'C_CNTRY' equals 'US'. Assuming 'C_CNTRY' is in the 'PPRT' table:
FinalTable = Table.SelectRows(JoinedTables, each [C_CNTRY] = "US")
Finally, select the columns you need ('PART', 'P_COLM_1_', 'C_HARMZD_PRE', 'C_SUFF') from the 'FinalTable'.
ResultTable = Table.SelectColumns(FinalTable, {"PART", "P_COLM_1_", "C_HARMZD_PRE", "C_SUFF"})
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
26 |
User | Count |
---|---|
95 | |
50 | |
43 | |
40 | |
35 |