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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AGo
Post Patron
Post Patron

Parameter changing datasource type DB2->ODBC

Hi,

 

I have this M code and trying to return the TABLE1 table for conditionally 2 datasources (ODBC and DB2) which has the same structure.

I'm not good at M: I think that the third row generates  a parameter field, but I have yet created a parameter (called "parameter") as another datasource that I want to manage outside this code.

"parameter" is managed to have 2 pre-defined values selectable "ODBC" and "DB2".

For me, for a better understanding of the code structure, suppose that I also want to rename the field "LOREM" in "IPSUM".

 

 

let

#"Origine" = (para as text) =>
if para = "ODBC"
then

let
    Source = Odbc.DataSource("dsn=dsnname", [HierarchicalNavigation=true])
   in
    Source

else 

let
    Source = DB2.Database("servername", "test", [Implementation="IBM"])
in
Source in #"Origine"

 @v-yuezhe-msft

Thank you in advance!

1 ACCEPTED SOLUTION

Hi @AGo,

in M, every query step can be seen as a variable. So your requirement can be solved like this:

 

let
	Odbc = Odbc.DataSource("dsn=dsnname", [HierarchicalNavigation=true]),
	DB2 = DB2.Database("servername", "test", [Implementation="IBM"]),
	Origine = if para = "ODBC" then Odbc else DB2
in 
	Origine

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

Invoking @ImkeF


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @AGo,

in M, every query step can be seen as a variable. So your requirement can be solved like this:

 

let
	Odbc = Odbc.DataSource("dsn=dsnname", [HierarchicalNavigation=true]),
	DB2 = DB2.Database("servername", "test", [Implementation="IBM"]),
	Origine = if para = "ODBC" then Odbc else DB2
in 
	Origine

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Works like a charm! And thanks forthe functioning explaining.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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