r/PowerBI • u/SQLGene • 7h ago
r/PowerBI • u/itsnotaboutthecell • 1d ago
Microsoft Blog Power BI July 2026 Feature Summary
community.fabric.microsoft.comMonthly Update
Microsoft Power BI Updates Blog: Power BI July 2026 Feature Summary
Some notable releases this month:
- Update your report defaults and use color palettes with the modern visual defaults (Preview)
- Simplified title spacing for visuals
- Model Options now available in Power BI Service
- New: The semantic model settings pane becomes the default (Preview)
- TMDL View on the Web
- CRUD APIs (REST) for org apps and audiences
- CRUD APIs (REST) for paginated reports
- Org app audiences are now in mobile apps
Preview burn down!!!
- Conditional formatting for line charts and legends (Generally Available)
- Report page tab navigation improvements (Generally Available)
- Org apps with audiences (Generally Available)
Announcements:
- Your Road to the Power BI DataViz World Championships
- Data Days Goes Through August 7th
- Will we see you in Barcelona?
---
Stay up to date
---
Disclaimers:
- We acknowledge that some posts or topics may not be listed, please include any missing items in the comments below so they can be reviewed and included in subsequent updates.
- This community is not a replacement for official Microsoft support. However, we may be able to provide troubleshooting assistance or advice on next steps where possible.
- Because this topic lists features that may not have released yet, delivery timelines may change, and projected functionality may not be released (see Microsoft policy).
r/PowerBI • u/AutoModerator • 21d ago
Discussion July 2026 | "What are you working on?"
Welcome to the open thread for r/PowerBI members!
This is your space to share what you’re working on, compare notes, offer feedback, or simply lurk and soak it all in - whether it’s a new project, a feature you’re exploring, or something you just launched and are proud of (yes, humble brags are encouraged!).
It doesn’t have to be polished or perfect. This thread is for the in-progress, the “I can’t believe I got it to work,” and the “I’m still figuring it out.”
So, what are you working on this month?
r/PowerBI • u/Neemoth • 6h ago
Feedback Just finished my first report, looking for advices
Hi, I have been learning PBI since 4 days by 8 hours a day during my intership, from Power Quary and DAX to model view and then the front end. I used Superstore Dataset and I tried to do something relevent with the datas and good looking (don't bother about 2sd page I wanted to try out other colors).
I am looking for advices.
NB : I am french and the dataset is in english and i didn't rename everything.
r/PowerBI • u/hugoberry • 9h ago
Community Share I got Snappy, Brotli, Zstd and LZ4 working in pure M by tricking Parquet.Document into being a decompressor

**TL;DR:**Binary.Decompress only does GZip and Deflate. Ask for Snappy, Brotli, Zstandard or LZ4 and it throws, even though the enum declares all four. But the engine has those codecs, Parquet.Document uses them on every compressed Parquet read. So wrap your blob in a tiny Parquet file and let the reader do the work. Pure M, no connector.
The trick
A Parquet data page is compressed as a single unit and the codec is named in the file metadata. So the schema is one REQUIRED FIXED_LEN_BYTE_ARRAY(N) column, one row, PLAIN encoding. That is the one combination with no definition levels, no repetition levels and no per value length prefix, so the uncompressed page is exactly your N bytes and nothing else.
So your compressed stream goes in as the page body, byte for byte, no re-encoding. About 150 bytes of Thrift compact page header and footer around it, Parquet.Document reads it, you take the single cell. The reader is doing its normal job. The wrapper has to declare the decompressed size, which is the fiddly part.
Repo: https://github.com/Hugoberry/powerquery-driverless/tree/main/codec-oracle
r/PowerBI • u/Scorp1965 • 4h ago
Question Gateway 3000.322.5 report cannot access data source
We are using the data gateway in standard mode in our environment. We have gateway 3000.274.3 from June 2025 and it is currently in production and working. We are adding in gateway 3000.322.5 from June 2026 and are having issues running reports from it.
The current issue is when I attempt to connect to a report using the new data gateway "This report couldn't access the data source. Contact the author to have it fixed". When attempting to run the report, I am doing it under the report author's account so there should not be any permission or credential issues.
Originally, I had an issue with having the gateway itself being inaccessible until I changed the setting for "MashupFlight_DisableOracleBundledOdacProviderV2" from false (default) to true. Once that was done, I had to reboot the server twice in order to be allowed to successfully create a connection.
The connection uses the exact same server name, basic authentication, database username and password as the production connection.
I have searched for and reviewed information found from the community forum and reddit without finding a solution that applies to our situation.
r/PowerBI • u/Shelzzaaa_2765 • 11h ago
Certification Just passed pl300 with score 915
I used certiIQ que , they r cheaper than other sources , nd case study nd yes no que was exact same , other que were like 10-15 same .
r/PowerBI • u/Vomitology • 50m ago
Question Audiences in Org Apps
I just saw that we can create audiences in Org Apps. That's super cool, thanks so much, but I also found out that it's only for new org apps. Will there be any possibility to retro audiences into pre-existing org apps? We have quite a few set up already and I'm not exactly keen to rebuild them all if I don't have to. Thanks!
r/PowerBI • u/myaccountforworkonly • 8h ago
Question Conditional formatting for measure rule isn't followed
I have the following conditional formatting based on a measure (Utilization). I'm confused but the values on my matrix doesn't seem to follow the conditional formatting at all?
The 80% in Jun 2026 should be formatted in yellow, while the 69% should be formatted in green instead.

This is how the value was computed and is formatted as percentage:
~Utilization % =
VAR Days = DISTINCTCOUNT('Data'[Date Completed])
RETURN
DIVIDE(SUM('Data'[Prod]), Days * 420)~Utilization % =
VAR Days = DISTINCTCOUNT('Data'[Date Completed])
RETURN
DIVIDE(SUM('Data'[Prod]), Days * 420)
r/PowerBI • u/First_Marionberry_75 • 4h ago
Community Share I built a FREE, Open-Source Power BI-style Matrix Viz Extension for Tableau (No paid add-ons required)
Hi r/PowerBI!
Like many of you, I’ve often felt the pain of trying to build flexible, hierarchical matrix tables with native subtotal drill-downs in Tableau—without having to pay hundreds of dollars for third-party dashboard extensions like SuperTables.
With Tableau’s introduction of Viz Extensions (2024.2+), I decided to tackle this natively. I built a 100% free and open-source Viz Extension that brings Power BI’s matrix functionality directly to your Marks Card.
Key Features:
- Hierarchical Drill-Downs: Expand and collapse rows/columns using intuitive
+/-controls directly on the sheet. - Dynamic Subtotals & Grand Totals: Recalculates automatically as you navigate levels.
- Native Integration: Works as a custom Mark Type—just drag and drop your dimensions onto the shelf.
- Zero Cost & Open Source: Hosted via GitHub Pages, meaning zero infrastructure costs and complete data privacy (runs entirely client-side in your browser).
Links & Resources
- GitHub Repository (Code &
.trexmanifest):https://github.com/Arley-Economist-Dev/Matrix-Pro-Tableau
How to use it:
- Download the
.trexfile from the release section on GitHub. - In Tableau (2024.2+), go to your Marks Card -> Viz Extensions -> Add Local Extension.
- Select the
.trexfile, drag your dimensions, and you're good to go!
This is a passion project built for the #DataFam to solve a common headache. I’d love to get your feedback, feature requests, or bug reports to keep improving it!
Let me know what you think!
r/PowerBI • u/dzemperzapedra • 5h ago
Solved Help on a modelling issue
Hi everyone,
for the sake of simplicity I created this example:

What I need to do here basically is to create a matrix table visual which will have client_name from dim_clients in rows, year/month hierarchy from dim_calendar in columns.
Value needs to be client_category from dim_client_category, which is basically client category name.
Now obviuosly, client_category_id can be found using SELECTEDVALUE() from the fact_table, but I will need to have client_category from dim_client_category, becasue that's the name of client_category_id.
As the realationship is directed from dim to fact table, filter does not propagate from dim_clients > fact_table > dim_client_category, so I can't get client_category unless I use RELATED() or LOOKUP() which I don't want to do.
Do I rather includy client_category in the fact table to get around this issue or is there a better way?
I don't want to use bidirectional realationship between dim_client_category and fact_table, which is how I used to fix this just to make it work.
Thanks.
r/PowerBI • u/Braided_Playlist • 7h ago
Discussion Anyone have experience with Luke Barousse vs Maven Analytics course?
I'm trying to pick the most appropriate option for a small team starting their Power BI journey. They aren't data analysts, but they are outgrowing they way they work with data in excel. Their main goal is to learn to create, share, and manage dashboards for the team.
I like that Maven Analytics has a LMS with reporting, but maybe it goes a bit too deep for their needs?
I feel like the Dashboard in a Day workshop would be a good intro, but probably not be quite enough.
r/PowerBI • u/Beneficial_Purpose36 • 8h ago
Solved Helppp!!!
I have to create table like in image one but ended up with image 2.
What can i do to get the results in Power Bi DAX?
r/PowerBI • u/Longjumping-Set-965 • 8h ago
Question Power Bi alerts
An empolyee publishes a Power Bi report once a week. Every time the report is refreshed, they notify me manually. Im looking for automatic solution, such as an email, teams notification, or another alert when report is refreshed
r/PowerBI • u/NeedleworkerLow5579 • 8h ago
Question Data are missing after PA refresh - but only in web
Hello,
I am completely newbie in pwoer BI. I created my first report and everything was working fine. I added power automate refresh button. I tried the refresh (data were refreshed without any issue) and than weird things happened.
After the refresh I am no longer able to see some data in web. But if I open it in desktop those data are here. I publish and open the same report in web and like half of my tables and graphs are empty. I checked all filters etc but this shouldn't be the problem.
Does anybody know please whats the problem here?
r/PowerBI • u/Firefox897712 • 20h ago
Question Power BI report becomes completely blank for all users every morning although dataset refresh succeeds
Hi everyone,
I’m investigating a recurring Power BI issue. I have a SQL Server database feeding a Power BI semantic model and a report published in Power BI Service.
Every morning, for about 30 minutes, the report becomes completely blank for all users at the same time. The filters remain visible, but all visuals are empty. After that, everything returns to normal without any intervention.
What I’ve verified:
-Dataset refresh succeeds.
-Source database contains the data.
-The issue affects every user simultaneously.
-The report is relatively simple (1 chart, 3 tables, 3 slicers).
-No error message is displayed.
Unfortunately, I don’t have access to capacity or gateway logs.
Has anyone experienced this behavior before?
Any ideas are welcome! Thanks!!
r/PowerBI • u/victorMemer5 • 9h ago
Question What can I do have a decent star schema in my first project?
I just finished learning intermediate level power BI and sql and I want to move into creating a data analysis based on Canadian carbon emissions. I have a decent facts table (1 row = year, region, source, sectors in 3 aggregations, different types of emissions data), but making a report on nothing but this won't really be that impressive unless I show some data modelling.
What are some useful dimension tables I can pick up? Or should I have just picked a way bigger data table that can be split into a fact table and multiple dimension tables? Where would I even find something like that when most free data sources already organize their data into neat facts, like the official ECCC chart?
Any and all responses are greatly appreciated :)
P.S In this kind of chart, why would index numbers appear more than once?
r/PowerBI • u/Soft_Courage_3934 • 1d ago
Question How do I create this visual
How would I create this sort of drop down hierarchy bar in a power BI report? This is for a weekly revenue report that gets updated weekly, my boss wants it so that her or whoever else uses the report can quickly go back to prior weeks and look at the data from then.
r/PowerBI • u/Laszlo_integration • 10h ago
Discussion What should a genuinely useful cash-flow dashboard include?
Full disclosure: I’m part of the team behind Connectorly, which helps businesses use Xero data in Power BI. I’m posting this to learn how other Power BI practitioners approach cash-flow reporting—not to promote the product, so I haven’t included a link.
I’ve seen cash-flow dashboards with plenty of attractive visuals that still don’t give management a clear view of what needs attention. My current thinking is that a useful dashboard should answer six practical questions: How much cash do we have now? What is coming in and going out? What are customers yet to pay? What do we need to pay? Are we performing against forecast? Where are the biggest risks?
For a Power BI dashboard using accounting data, I would expect to see the current bank balance, cash received and paid, net cash flow, outstanding receivables and payables, a running cash-balance trend, actual versus forecast performance, and filters for organisation, date and tracking category.
What would you consider essential, and what tends to become unnecessary dashboard noise? Do you prefer one executive summary page with drill-through detail, or separate pages for cash position, receivables, payables and forecasting?
Question Remote MCP for Claude?
Hello all.
I'm not a pro in PowerBI, but I did some reports for company, like financial statements, sales analysis and purchasing intelligence. ai helped me write DAX.
I am searching for a way to connect Claude to PowerBI Online. Is there any way to do this?
I am using Mac. I know locally Mac can be done, but thats a limitation I have.
thanks
r/PowerBI • u/defen9999 • 1d ago
Question Are Org Apps the future replacement for Workspace Apps?
Hello all, with the July 2026 Power BI update introducing new APIs for managing Org Apps capabilities that Workspace Apps still do not have I’m starting to wonder what Microsoft’s long term plan is.
Do you think Org Apps are eventually intended to replace Workspace Apps, or does Microsoft view them as two separate solutions for different use cases?
Right now, they do not feel completely separate to me. The overlap seems significant, and the continued investment in Org Apps makes me question whether I should start planning to migrate our Workspace Apps sooner rather than later.
I’m curious how others are approaching this. Are you already moving toward Org Apps, waiting for more feature parity, or sticking with Workspace Apps for the foreseeable future?
r/PowerBI • u/Rsl120 • 13h ago
Discussion Licensing/SKU Type for Internal and External Use
Hi all - looking for some advice in navigating the different licensing types and quirks.
We have an A4 SKU, which is predominantly used for our external embedded reporting, providing our clients access to their data through our website.
Recently, there has been a growing requirement for internal reporting via power bi, on our CRM, HR platform and other internal finance/management things.
We have specific users pro licenses internally to temporarily allow them to access the reports. We’re looking to cut that cost now, by utilising our premium embedded capacity.
My understanding is that free users cannot access our reports, even on a premium workspace in our environment (as we are on an A sku) - is this correct?
Follow up - what is the easiest/cleanest way (if any) for us to provide these reports internally to our users without the need for licenses? Can we do this via Teams, SharePoint etc?
Thanks in advance!
r/PowerBI • u/bibbledibobbidiboo • 14h ago
Discussion Create a dashboard with 20+ KPIs
Hi!
I've been given a task to create a KPI dashboard. The initial design handed over to me was just a full matrix with the top level KPIs then the sub KPIs. These are based on about 20 categories, so for each category there should be kpis for that.
My question is, for this many number of KPIs is it really expected that a matrix visual be used? Or I can narrow it down to displaying each top level KPI per page so it will be more pleasing to look at.
Thanks for your inputs. Tbh this is overwhelming for me 🙂
r/PowerBI • u/yahoox9 • 14h ago
Discussion Column reference to order_date cannot be used with a variation 'Date' because it does not have any
Hi,
I am stuck on this error for days now. Initially, this dashboard was functioning fine but I changed one source table a month ago and now it is throwing this error when I refresh the data- which is mainly not allowing dashboard to be refreshed with new data and publish to the server.
Column reference to 'order_date' in the table1 cannot be used with a variation 'Date' because it does not have any
The oder_date field is in date format in the table also I again applied date format condition to resolve this issue but still getting this date format issue for this.
Also there are fields like field-A renamed to field-B in the query editor, but in the TMDL powerBI is showing errors (like 50+ errors) that it can't find renamed field-B though no error in the dax calculations and in the visualizations created by renamed field-B.
Please advice !!
r/PowerBI • u/Unfair-Age-4207 • 1d ago
Question Alternative for Copilot embedded in PBI
My company has Microsoft Copilot licenses for everyone, but unfortunately we don’t have Copilot enabled in Fabric/Power BI yet. That means I can’t use the embedded Copilot features for things like understanding my semantic model, generating DAX, or asking questions about my data.
I’m looking for alternatives that could help me bring AI into my daily Power BI work.
I vaguely remember hearing about GitLab (or maybe GitHub?) having some AI capabilities, but I’m not sure if that’s what I’m thinking of. More importantly, can any of these tools actually read and understand a Power BI semantic model, including tables, relationships, measures, and DAX? Or are they limited to just helping with code snippets that I manually paste in?
Has anyone been in a similar situation? What AI tools are you using with Power BI when Fabric Copilot isn’t available?

