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
dgwilson
Resolver III
Resolver III

QUERY ODBC data source - only import data WHERE condition is true

Good afternoon everyone.

I'm new to Power BI and have been making good progress.

 

I've got a challenge that I've been struggling with for hours to solve and searching for answers hasn't gone so well.

 

In the Advanced Editor I have the following:

 

-- BEGIN

let
Source = Odbc.DataSource("dsn=EDW_64", [HierarchicalNavigation=true]),
EDWP_D2PM_Schema = Source{[Name="EDWP_D2PM",Kind="Schema"]}[Data],
SD_ITSM_PROBLEMS_VW_View = EDWP_D2PM_Schema{[Name="SD_ITSM_PROBLEMS_VW",Kind="View"]}[Data]
in
SD_ITSM_PROBLEMS_VW_View

-- END

 

What I want to do is import data from the table SD_ITSM_PROBLEMS_VW where DELETE_FLAG = 'C'

 

I don't know if it can be done. And if it can I haven't been able to figure out how.

I've tried to replace [DATA] with [QUERY=....] and that gave syntax errors on the =.

 

This query will be used through a gateway and thus also reduce the amount of data coming through. The reduced data will also mean that I will not need to add filters to every visualisation!

 

- David

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @dgwilson,

 

If I understand you correctly, you should be able to use the SQL statement option to import the ODBC data in your scenario. Smiley Happy

SELECT * FROM SD_ITSM_PROBLEMS_VW WHERE DELETE_FLAG = 'C'

sql.PNG

 

Regards

View solution in original post

4 REPLIES 4
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @dgwilson,

 

If I understand you correctly, you should be able to use the SQL statement option to import the ODBC data in your scenario. Smiley Happy

SELECT * FROM SD_ITSM_PROBLEMS_VW WHERE DELETE_FLAG = 'C'

sql.PNG

 

Regards

This gives me an error.

Though based on this I think I may need to specify some additional parameters (like database name) before the table. I will experiment. Syntax may be a bit of guess work.

Capture.PNG

This seems to have solved it.

Note the <database name>.<table name> syntax.


Capture.PNG

 

Really appreciated your assistance and guidance. Thank you.

Hi @dgwilson,

 

Great to hear the problem got resolved! Could you accept your reply above as solution to close this thread? Smiley Happy

 

Regards

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.