Skip to main content

November's Power BI Updates


 It’s been another month and thank goodness we are getting closer to the end of 2020! If you like to read about the updates to the Power BI program, then below I give a summary of the features I enjoyed the most from this month.  If you want the full experience and would like to see the new features demoed for you then check out the video Devin and I made for this month right here à November Power BI Updates   Devin and I, in addition to all of us at Pragmatic Works, hope this helps you along your Power BI journey.

This month has quite a few updates and here are the ones I enjoy the most.

 Updated Model View (Preview)

With the new updated model view, you get a lot more navigation, functionality, and usability enhancements.  There really are too many to discuss here, so check out the video or just turn on the feature and see for yourself.  My favorite new features are pinning key fields, collapsing all columns to free up more space to see table interactions and header tooltips that give you a plethora of information about each table.

 Visual Zoom Slider

With this month’s update, you now have the ability to add zoom sliders to bar/column, line, line and bar/column combo, and scatter charts.   The zoom slider allows you to zoom in on a specific section of a visual without changing or cross-filtering any other visuals on the page.  This a great usability feature in my opinion and could even eliminate the need for some slicers that exist on your current reports. 

Anomaly Detection

This is a preview feature, so make sure you turn it on. This feature will try and detect anomalies in time series data on line charts.  So, right away if you decide to use this feature you must use either a DateTime or a date hierarchy in your visual.  You will add the anomaly detection to your visual in the formatting section of the visual.  If Power BI finds an anomaly you will see a special icon above that data point.  You can get a quick idea of the anomaly by looking at the tooltip or clicking the anomaly point and seeing the finer details in the visualization pane.  There is much more to learn about anomaly detection so check out our video, November Power BI Updates, for all the details.

 

 

 

Comments

Popular posts from this blog

Best Practice To Trim Before Removing Duplicates or Merging In Power Query Editor

In last week’s blog, I wrote and did a video about how to remove duplicate records and keep the most recent entry as long as a date column was part of the data source.   I came across the scenario while giving training on Power BI with my company Pragmatic Works.   See the video below:     This week, while doing another two-day training I came across a different scenario from a follow-up conversation from day 1.   I had explained how to remove duplicate records and one of the students started working on a Power BI project she has for her company.   On day 2 the student informed me that her remove duplicates step was not working.   I said that is odd and I asked to see the data.   In one of her table visuals, I could see that it appeared that a few of the records had duplicates based on the name column.   After further investigation though, we figured out the culprit.     She had done all the steps correctly, but it was a data integrity issue.   In her data source, the perso

Relating "Related Tables" to Baseball because I Miss Sports

I miss sports. In particular, I miss baseball. Between learning more Power BI functions and the ins-and-outs of DAX, I've turned to Netflix to fill the deep caverns left in my soul since baseball season has been postponed. And as a result, I've thought more about tigers and big cats more than I ever have in my life. I know ALL about Carol Baskins and am fully on board for a spin-off centering on locating her lost husband. I've googled "is it really legal to own a tiger in a residential area?" Without baseball in April, I am barely hanging in there (kinda like Joe Exotic's eyebrow ring). So, I am filling the sports-sized hole by using baseball stats in Power BI to demonstrate pulling data from multiple tables and consolidating it into one table.  Some of the data we want to consolidate also has to have some aggregations (which is fancy for "calculations") performed on it.  In this demo I will attempt to break down what is really going on

Create A Record Without A Form In Power Apps Using PATCH

 In Power Apps, forms are great to use to submit data to be recorded in your data source.  They do not take long to set up and the functions used to submit the data are fairly simple.  This simplicity, however, can come at a cost.  The cost of using a form is you don’t have a lot of design control in terms of layout and design.  If you don’t like the rigid structure of forms and want more freedom, then I’ve got the fix for you.  You need to become acquainted with the Patch function.   The Patch function allows you to update or create a new record in your data source.   The Patch function requires you to identify your data source, decide if you want to update or create a record, and then point to your controls on the app that contains the data you are submitting.   The coding is a little more involved compared to SubmitForm(FormName) that you use on forms.   The payoff, though, for learning a little more advanced code is you get complete design freedom for your data input controls.