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
todea
Helper I
Helper I

How to make a visual queue in a PowerBI report to show which data source is in use e.g. DEV or PROD

Hi team,

 

We have 4 DW environments, Dev, Test, UAT & Prod and I have a Data Quality report and can change data source between the 4 environments to look for issues. Is there is a way to show on the report, which data source I have connected to without going to Data Source Settings? I would prefer an obvious visual indicator that would just parse the name of the data source to a powerbi visual. Alternately is there a way to use colours to demonstrate which data source a report is using e.g. a red banner for DEV, green for PROD etc.

 

With thanks,
Tim

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @todea,

 

Power query not support to show the original database information.

 

For your scenario, I'd like to suggest you to modify your formula to use query parameter to get data. Then use these parameter to create a table to log the data source information.

 

For example: 

let
    Source = Sql.Databases(Server){[Name=Database]}[Data]
in
    Source

Notice: Server and Database are query parameters.

5.PNG

Sourceinfo Table:

let
    Source = #table( type table[ #"Server"=text, #"Database"=text ], {{Server,Database}})
in
    Source

6.PNG

 

Reference:

Working with Parameters and Functions in Power Query/Excel and Power BI

Deep Dive into Query Parameters and Power BI Templates

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

HI @todea,

 

Power query not support to show the original database information.

 

For your scenario, I'd like to suggest you to modify your formula to use query parameter to get data. Then use these parameter to create a table to log the data source information.

 

For example: 

let
    Source = Sql.Databases(Server){[Name=Database]}[Data]
in
    Source

Notice: Server and Database are query parameters.

5.PNG

Sourceinfo Table:

let
    Source = #table( type table[ #"Server"=text, #"Database"=text ], {{Server,Database}})
in
    Source

6.PNG

 

Reference:

Working with Parameters and Functions in Power Query/Excel and Power BI

Deep Dive into Query Parameters and Power BI Templates

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Hi @v-shex-msft thanks very much for your advice and forgive my slow reply. It is beyond my ability so i will seek some help from a colleague. Many thanks for takign the time to respond, thanks so much Smiley Happy

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.