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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
PranjaliB
Frequent Visitor

How to create Select query with where clause with AND condition in Power BI

Hi ,

I am creating Power BI reports  and Some SQL queries are like this in which @StartDate,@FinishDate,@DepSelection are query parameter

 

SELECT DISTINCT
p.[ProjectUID], p.[Project code]
FROM Project p
JOIN Assignment abd ON abd.ProjectUID = p.ProjectUID
AND abd.AssignmentWork <> 0
AND abd.TaskIsActive = 1
AND abd.TimeByDay BETWEEN (@StartDate) and (@FinishDate)
WHERE [Project code] is not null
AND ISNULL(p.Archived, 'No') = 'No'
AND p.[Project Departments] IN (@DepSelection)
ORDER BY p.[Lawson Code]

 

How to create above query in Power BI desktop.or complex joins on tables .Urgent Help appreciated!!

6 REPLIES 6
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @PranjaliB,

 

If you'd like to show the result in a visual, I would suggest you add the two columns in a Table visual and filter them by the Slicers. If you'd like a calculated table, please try dax/selectcolumns-function-dax and dax/filter-functions-dax. Please share a sample. We can write down a complete formula.

 

Best Regards,
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
AnkitBI
Solution Sage
Solution Sage

 

Can achieve by using Parameters in PBI Desktop. Please check below Post or any Post on how to add Parameters in SQL Query in PBI Desktop. Parameters

 

Regards
AJ
Do Like Post if response seems good and Worth liking.
Do Mark as Solution if response resolved your Issue.

 

Hi Ankit 

I am looking how to create select query in power bi with mutiple joins and logical conditions

You can directly write your queries using Advanced option in SQL source. It allows using All SQL functions.  Try following steps

1) Write your SQL query in Advanced option. Give sample values instead of variables like FirstDate etc.

2) Once data is imported, create Power BI parameters for your SQL Query.

3) Go to Advanced Editor and Replace sample values with your newly created Parameters. Check the link I shared or any other link online.

4) Click on Refresh, your data will now be imported based on values provided in Parameters.

 

Unfortuately, don't have time to create Source and then End to End PBIX file.

 

 

Capture.PNG

Hi Ankit,

Thanks for this .But i dont have have sql database as source.I am getting data from Odata feed where i am getting tables and i want to create table/matrix which gives me same output as sql queries after execution.

So basically i want whcih DAX functions i have to use to get same output as above SQL query .

Ok.. You didn't mention OData source in your requirements. Most of these will be done in Power Query which is ETL for Power BI rather than DAX which is primarily for Data Modelling. Share sample data of your tables and expected output. Then I will have a look but this can take time.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors