Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Power BI March 2024 Feature Summary
Welcome to the March 2024 update! Here are a few, select highlights of the many updates we have for Power BI. There are new updates for Visual calculations, edit your data model in the Power BI Service, and deliver report subscriptions to OneDrive SharePoint.
There is more to explore, please continue to read on.
Earn a free Microsoft Fabric certification exam!
We are thrilled to announce the general availability of Exam DP-600, which leads to the Microsoft Certified: Fabric Analytics Engineer Associate certification.Microsoft Fabric's common analytics platform is built on the instantly familiar Power BI experience, making your transition to Fabric Analytics Engineer easier. With Fabric, you can build on your prior knowledge - whether that is Power BI, SQL, or Python - and master how to enrich data for analytics in the era of AI.
To help you learn quickly and get certified, we created the Fabric Career Hub. We have curated the best free on-demand and live training, exam crams, practice tests and more.
And because the best way to learn is live, we will have free live learning sessions led by the best Microsoft Fabric experts from Apr 16 to May 8, in English and Spanish. Register now at the Learn Together page.
Also, become eligible for a free certification exam by completing the Fabric AI Skills Challenge. But hurry, the challenge only runs from March 19 – April 19 and free certs are first-come, first-served! (limit one per participant, terms and conditions apply).
Contents
Reporting
A_screenshot_of_a_computer_Description_automatically_generated
Also, after you publish a report that has visual calculations in it, you can access the visual calculations edit mode by selecting a visual calculation and choosing Edit calculation.
A_screenshot_of_a_computer_Description_automatically_generated
To learn more about visual calculations, read our announcement blog and our documentation.
Blogs: https://powerbi.microsoft.com/blog/visual-calculations-preview/
Docs: https://aka.ms/visual-calculations-docs
This month, we streamlined the build pane and moved the visual suggestions feature to be inside the on-object build button only. Need help building your visual? Use the on-object “suggest a visual” experience. Already know your way around, use the build pane as you already do today.
A_screenshot_of_a_computer_Description_automatically_generated
Gauge visual now supported! The gauge visual now supports the new on-object formatting sub selections. Simply double click on your gauge visual to enter format mode, then right-click on which part of the visual you’d like to format using the mini-toolbar.
A_screenshot_of_a_graph_Description_automatically_generated
A_screenshot_of_a_computer_Description_automatically_generated
The pane switcher has been renamed to Pane manager and spruced up this month. Based on your feedback, we’ve updated the order of the pane listings and added the settings that pertain to the Pane manager directly in this menu. Let us know what you think!
A_screenshot_of_a_computer_Description_automatically_generated
As of this monthly update, you can generate a mobile-optimized layout with a click of a button! This long-awaited feature allows you to easily create mobile-optimized layouts for any new or existing report page, saving you tons of time!
When you switch to the mobile layout view in Power BI Desktop, if the mobile canvas is empty, you can generate a mobile layout just by selecting the Auto-create button.
The auto-create engine understands the desktop layout of your report and builds a mobile layout that considers the position, size, type, and order of the visuals that the report contains. It places both visible and hidden visuals, so if you have bookmarks that change a visual’s visibility, they will work in the automatically created mobile layout as well.
You can edit the automatically created mobile layout, so if the result is not exactly what you expected, you can tweak it to make it perfect for your needs. Think of it as a starting point you can use to shorten the way to that beautiful, effective, mobile-optimized report you envision.
To enjoy the new mobile layout auto-create capabilities, switch on the “Auto-create mobile layout” preview feature in Power BI Desktop: File > Options and settings > Options > Preview features > Auto-create mobile layout.
A_screenshot_of_a_computer_Description_automatically_generated
We invite you to try out the mobile layout Auto-create feature and share your feedback with us!
A_map_of_australia_with_white_text_Description_automatically_generated
In this Power BI release, we’re excited to introduce an upgrade to the data bars for Matrix and Table visuals. Now, you have the flexibility to apply data bars to the following options:
Values Only: Display data bars based solely on the values within your visual.
Values and Totals: Extend data bars to include both individual values and their corresponding totals.
Total Only: Show data bars exclusively for the overall total.
This enhancement provides better control over your tabular visuals, reducing unnecessary noise and ensuring cleaner presentation.
Power_BI_March_2024_Feature_Summary
Power_BI_March_2024_Feature_Summary
With Fabric Copilot, you can generate DAX queries from natural language, get explanations of DAX queries and functions, and even get help on specific DAX topics. Try it out today and see how it can boost your productivity with DAX query view!
A_screenshot_of_a_computer_Description_automatically_generated
A_screenshot_of_a_computer_Description_automatically_generated
A more detailed blog post will be available soon.
A_screenshot_of_a_computer_Description_automatically_generated
A_screenshot_of_a_computer_Description_automatically_generated
Learn more information about this editor including limitations in our documentation. Please continue to submit your feedback directly in the comments of this blog post.
This new capability comes with an extra benefit of potential performance improvements when evaluating complex calculation group items.
To define and manage selection expressions for calculation groups you can leverage the same tools you use today to work with calculation groups.
On a calculation group you will be able to specify the following selection expressions both consisting of the Expression itself and a FormatStringDefinition:
| Type of selection | Current behavior | New behavior without a defined selection expression | New behavior with a selection expression defined |
| Single selection | Calculation group selection is applied | N/A, no change to behavior | N/A, no change to behavior |
| Multiple selection | Calculation group is not filtered | Calculation group is not filtered | Calculation group evaluates specified multipleOrEmptySelectionExpression |
| Empty selection | Error | Calculation group is not filtered | Calculation group evaluates specified multipleOrEmptySelectionExpression |
| No selection | Calculation group is not filtered | Calculation group is not filtered | Calculation group evaluates specified noSelectionExpression |
Multiple or Empty selections
If the user makes multiple selections on the same calculation group, the current behavior is to return the same result as if the user did not make any selections. In this preview, you can specify a multiOrEmptySelectionExpression on the calculation group. If you did, then we evaluate that expression and related dynamic format string and return its result. You can for example use this to inform the user about what is being filtered:
EVALUATE
{
CALCULATE (
[MyMeasure],
'MyCalcGroup'[Name] = "item1" || 'MyCalcGroup'[Name] = "item2"
)
}
-- multipleOrEmptySelectionExpression on MyCalcGroup:
IF(ISFILTERED ( 'MyCalcGroup' ),\"Filters: \"& CONCATENATEX (FILTERS ( 'MyCalcGroup'[MyCalcGroup] ),'MyCalcGroup'[MyCalcGroup],\", \"))
IF (
ISFILTERED ( 'MyCalcGroup' ),
"Filters: "
& CONCATENATEX (
FILTERS ( 'MyCalcGroup'[Name] ),
'MyCalcGroup'[Name],
", "
)
)
-- Returns “Filters: item1, item2”
In case of a conflict or empty selection on a calculation group you might have seen this error before:
A_screenshot_of_a_computer_Description_automatically_generated
With our new behavior this error is a thing of the past and we will evaluate the multipleOrEmptySelectionExpression if present on the calculation group. If that expression is not defined, we will not filter the calculation group.
No selections
One of the best showcases for this scenario is automatic currency conversion. Today, if you use calculation groups to do currency conversion, the report author and user must remember to select the right calculation group item for the currency conversion to happen. With this preview, you are now empowered to do automatic currency conversion using a default currency. On top of that, if the user wants to convert to another currency altogether, they can still do that, but even if they deselect all currencies the default currency conversion will still be applied.
Current
Note how both the currency to convert to as well as the “conversion” calculation group item is selected.
A_screenshot_of_a_computer_Description_automatically_generated
New
Notice how the user must only select the currency to convert to.
A_screenshot_of_a_computer_Description_automatically_generated
Read more about selection expressions in our calculation groups documentation.
The selection expressions for calculation groups are currently in preview. Please let us know what you think!
Autodetect relationships
Creating relationships for your semantic model on the web is now easier using autodetect relationships. Simply go to the Home ribbon and select the Manage relationships dialog. Then, choose 'Autodetect' and let Power BI find and create relationships for you.
A_screenshot_of_a_computer_Description_automatically_generated
Sort by column
Within the web you can now edit the sort by property for a column in your semantic model.
Row-level security
We have made several improvements to the row-level security editor in the web. In the DAX editor you can now do the following actions:
Please continue to submit your feedback directly in the comments of this blog post or in our feedback forum.
Undo/Redo
Now it’s simply to undo your previous action or use the ‘Reset all changes’ to go back to the last save state of your exploration.
Note: If you haven’t saved your exploration yet, then reset will clear your canvas back to blank.
A_screenshot_of_a_computer_Description_automatically_generated
Clear all
The new ‘clear all’ feature allows you to wipe your canvas back to blank. This works great when using Explore as a whiteboarding space, maybe you have a new thought you’d like to explore and want to essentially erase what you have in one click. This is made simple with the new ‘clear all’ option.
A_screenshot_of_a_phone_Description_automatically_generated
New filter card styling
When using the filtering experience in Explore you’ll now notice an update to the filter cards style and readability. We hope these improvements make filters easier to use and accessible for more users. Let us know what you think!
A_screenshot_of_a_graph_Description_automatically_generated
Power_BI_March_2024_Feature_Summary
We currently support “Standard” subscriptions.
Power_BI_March_2024_Feature_Summary
You need to select the “Attach full report” option.
Power_BI_March_2024_Feature_Summary
We support more output formats for paginated reports.
Power_BI_March_2024_Feature_Summary
Once you select the output format, you can select the OneDrive or SharePoint option, the location and enter the subscription schedule to have your report delivered.
Power_BI_March_2024_Feature_Summary
Learn more about subscribing to ODSP here. This feature will start lighting up in certain regions as soon as this week, but depending on the geography in which your Power BI tenant is located, it may take up to three weeks to appear. Also, since this feature will not be supported in Sov clouds while in preview.
A_screenshot_of_a_computer_Description_automatically_generated
If you click on the title bar, you will see a new flyout that is specific for Power BI Project. This lets you easily locate the Power BI Project files as well as the display name settings for the report and the semantic model. You can also open the folder in file explorer by clicking on the paths.
A_screenshot_of_a_computer_Description_automatically_generated
A_screenshot_of_a_computer_Description_automatically_generated
As part of our continuous efforts to simplify the integration with Git, we have consolidated these files into a single system file -. platform. This new system file will encompass all the attributes that were previously distributed between the two files.
A_screenshot_of_a_computer_Description_automatically_generated
When you make new changes to Git, your system files will be automatically updated to the new version in conjunction with your modifications. Both your own changes and the new file updates will show as part of the commit operation. Additionally, any new projects exported from Power BI desktop via developer mode will adopt the new system file format, which implies that you need to update to the latest Power BI Desktop version in order to open exported items from Fabric. Beyond these adjustments, there will be no impact on your Git workflow.
More about this file and the attributes within it can be found here.
A_screenshot_of_a_graph_Description_automatically_generated
The AE Timeline serves as a graphical representation of the timing of adverse events in clinical trials or studies. Its primary objective is to visually convey when adverse events occur concerning the timing of treatment or exposure. Widely used in medical research, especially during safety data analysis in drug development, the AE Timeline is now seamlessly available within Power BI.
Experience the enhanced Dumbbell Bar Chart and the innovative AE Timeline by downloading it from AppSource. All features are readily accessible within Power BI Desktop, empowering you to evaluate this visual on your own data. Dive into enhanced functionality and discover new insights effortlessly.
Questions or remarks? Visit us at: https://visuals.novasilva.com/.
The "First Day of Week" option was added in the recent version update.
The Date Picker visual offers a modern calendar view, Presets, Pop-up mode, Default Selection, Themes, and more, making it a must-have date slicer for Power BI reports. Its rich formatting options help with brand consistency and a seamless UI experience.
Key Features:
🔗 Try Date Picker for FREE from AppSource
📊 Check out all features of the visual: Demo file
📃 Step-by-step instructions: Documentation
💡 YouTube Video: Video Link
📍 Learn more about visuals: https://powerviz.ai/
✅ Follow Powerviz: https://lnkd.in/gN_9Sa6U
A_screenshot_of_a_calendar_Description_automatically_generated
A_screenshot_of_a_calendar_Description_automatically_generated
MAIN FEATURES:
POPULAR USE CASES:
Try Drill Down Combo PRO now by downloading the visual from AppSource.
Learn More about Drill Down Combo PRO by ZoomCharts.
A_screenshot_of_a_graph_Description_automatically_generated
Introducing our PDF Uploader/Viewer visual!
Simply upload any PDF file and instantly share it with your colleagues.
This visual boasts several impressive capabilities:
To bring visual formulas and ton of additional functionalities frequently sought after by the Power BI community, Inforiver leveraged a differentiated architecture compared to the native matrix. With the recently released dynamic drill SDK/API, we now offer the Performance Mode, so you don’t have to compromise between the initial load performance offered by the native matrix and the advanced capabilities offered by Inforiver. You can now load the first two levels as the default dimensions of the hierarchy and then drill down to the lower levels as needed on demand, giving you the best of both worlds.
In addition to manual data input and what-if simulation capabilities, Inforiver’ s planning and forecasting capabilities are significantly enhanced with the upcoming 2.8 release. This includes a dedicated forecast toolbar, support for automatic rolling forecasts, dynamic handling of time series extensions, and an option to distribute deficits to other time periods.
Inforiver notes and annotations are now context-aware and are dynamically updated based on the filter/slicer selection.
Try Inforiver today!
A_screenshot_of_a_computer_Description_automatically_generated
YouTube video: https://youtu.be/uBLw8xOWujc
Video_titled_Inforiver_Premium_Matrix_2.8_No_Code_Advanced_Reporting_in_Power_BI
Power_BI_March_2024_Feature_Summary
Follow the simple, click-through experience of Power Query online. Select the data source that you want to connect to.
Power_BI_March_2024_Feature_Summary
If you want to use AAD, you need to create a shareable cloud connection. You can create one as documented here or use one that has been shared with you.
Power_BI_March_2024_Feature_Summary
You might also select the shareable cloud connection from the “Connection” dropdown. Make sure that the report consumer has permissions to the shareable cloud connection.
Once you have a connection, select Next.
Power_BI_March_2024_Feature_Summary
You can transform the data that was selected.
Power_BI_March_2024_Feature_Summary
In the Power Query editor, you can perform all the operations supported. Learn more about the capabilities of the Power Query editor.
Power_BI_March_2024_Feature_Summary
The M-Query will be used to build your RDL dataset.
Power_BI_March_2024_Feature_Summary
You can use this dataset to build your paginated report. You can publish the report to the service and share it. Learn more about connecting to more data sources from Power BI Report builder here.
Power_BI_March_2024_Feature_Summary
That is all for this month! Please continue sending us your feedback and do not forget to vote for other features that you would like to see in Power BI! We hope that you enjoy the update! If you installed Power BI Desktop from the Microsoft Store, please leave us a review.
Also, don’t forget to vote on your favorite feature this month on our community website.
As always, keep voting on Ideas to help us determine what to build next. We are looking forward to hearing from you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.