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

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

Reply
Anonymous
Not applicable

Using filtered data from Azure DB in PowerBI

Problem Statement - I have a Azure DB that has a column "ClientID" storing multiple values. I need to extract only the data with a particular clientID and create a PowerBI dashboard on that dataset which auto refreshes on new data entered in DB. Please suggest possible solutions.

 

For Example- At a time, only one clientID should be used in PowerBI dashboard.

Scan DateScanIDClientIDName
14-March0106418Alan
14-March0207268Barbara
15-March0107268Barbara
18-March0107268Barbara
18-March0206418Alan
14-March0206418Alan
18-March0107268Barbara

 

The main ask - The DB gets updated daily and adds new entries and thus, I need the dashboard to update accordingly when I refresh the dashboard.

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

Hi @Anonymous,

 

Is that you want something like this statement.

 

create view view_name as

SELECT [Scan], [Date], [ScanID], [ClientID], [Name] FROM table WHERE ClientID = "a particular clientID"

with check option

 

Automatically updated when you refresh?

 

You can get data from azure db with power query and set a parameter to dynamically get data. Or filter the table directly in power query editor. Then publish this report to power bi service and set scheduled daily refresh .

 

Best Regards

Community Support Team _ chenwu zhu

 

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

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @Anonymous,

 

Is that you want something like this statement.

 

create view view_name as

SELECT [Scan], [Date], [ScanID], [ClientID], [Name] FROM table WHERE ClientID = "a particular clientID"

with check option

 

Automatically updated when you refresh?

 

You can get data from azure db with power query and set a parameter to dynamically get data. Or filter the table directly in power query editor. Then publish this report to power bi service and set scheduled daily refresh .

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

amitchandak
Super User
Super User

@Anonymous , Check if RLS can help

RLS - Row Level security
https://community.powerbi.com/t5/MBAS-Gallery/Microsoft-Power-BI-Unleash-row-level-security-patterns-in-Power/td-p/712613
https://radacad.com/dynamic-row-level-security-with-organizational-hierarchy-power-bi

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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 Kudoed Authors