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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Power Query Logic

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Kudoed Authors