# Best Practice Rules Make sure to also check out the [PowerBI.com blog post](https://powerbi.microsoft.com/en-us/blog/best-practice-rules-to-improve-your-models-performance/ "PowerBI.com blog post") on this topic! And, check out the new [PowerBI.com blog post on v1.1](https://powerbi.microsoft.com/en-us/blog/best-practice-rules-to-improve-your-models-performance-and-design-v1-1/, "PowerBI.com blog post"). Also, check out this [post](https://www.elegantbi.com/post/bestpracticerulesavings "Best Practice Rule Savings") for quantifying the savings of following specific Best Practice Rules. Lastly, check out this [video](https://www.youtube.com/watch?v=5pu9FoTUpys) for an in-depth walkthrough of the Best Practice Rules and [Tabular Editor](https://tabulareditor.com/ "Tabular Editor")'s [Best Practice Analyzer](https://docs.tabulareditor.com/Best-Practice-Analyzer.html "Best Practice Analyzer"). ## Purpose Running this collection of rules inside [Tabular Editor](https://tabulareditor.com/ "Tabular Editor")'s [Best Practice Analyzer](https://docs.tabulareditor.com/Best-Practice-Analyzer.html "Best Practice Analyzer") will inform you of potential issues to fix or improvements to be made with regard to performance optimization and model design. ## Feedback We would love to hear feedback on how this tool has helped your organization. Please email feedback to: pbibestpractice@microsoft.com. If you find any issues or have any requests for new rules, please [submit an issue](https://github.com/microsoft/Analysis-Services/issues "submit an issue") within this repository. Just prefix the issue with "BPARules" to make it easier to track. ## Setup (automated) Following these steps will automatically load the Best Practice Rules into your local Tabular Editor. Note that this will overwrite the existing BPARules.json file (if you are already have one). 1. Open [Tabular Editor](https://tabulareditor.com/ "Tabular Editor"). 2. Connect to a model. 3. Run the following code in the [Advanced Scripting](https://docs.tabulareditor.com/Advanced-Scripting.html "Advanced Scripting") window. ```C# System.Net.WebClient w = new System.Net.WebClient(); string path = System.Environment.GetFolderPath(System.Environment.SpecialFolder.LocalApplicationData); string url = "https://raw.githubusercontent.com/microsoft/Analysis-Services/master/BestPracticeRules/BPARules.json"; string version = System.Windows.Forms.Application.ProductVersion.Substring(0,1); string downloadLoc = path+@"\TabularEditor\BPARules.json"; if (version == "3") { downloadLoc = path+@"\TabularEditor3\BPARules.json"; } w.DownloadFile(url, downloadLoc); ``` 4. Close and reopen [Tabular Editor](https://tabulareditor.com/ "Tabular Editor"). 5. Connect to a model. 6. Select 'Tools' from the File menu and select 'Best Practice Analyzer'. 7. Click the Refresh icon (in blue). ## Setup (manual) 1. Download the BPARules.json file from GitHub (in this repository). 2. Within the Start Menu, type %localappdata% and click Enter. 3. Navigate to the 'TabularEditor' folder (if using Tabular Editor 3, navigate to the TabularEditor3 folder). 4. Copy the rules file (.json) and paste it into the folder from Step 3.* 5. Open [Tabular Editor](https://tabulareditor.com/ "Tabular Editor") and connect to your model. 6. Select 'Tools' from the File menu and select 'Best Practice Analyzer'. 7. Click the Refresh icon (in blue). ## Notes * The following rules require running an additional script before running the Best Practice Analyzer * Avoid bi-directional relationships against high-cardinality columns * * Large tables should be partitioned * * Reduce usage of long-length columns with high cardinality *^ * Split date and time *** *These rules use [Vertipaq Analyzer](https://www.sqlbi.com/tools/vertipaq-analyzer/) data. There are 2 methods to load this data into Tabular Editor: 1. Load Vertipaq Analyzer data directly from a server ([instructions](https://www.elegantbi.com/post/vertipaqintabulareditor)) ([script](https://github.com/m-kovalsky/Tabular/blob/master/VertipaqAnnotations.cs)). 2. Load Vertipaq Analyzer data from .vpax file ([instructions](https://www.elegantbi.com/post/vpaxtotabulareditor)) ([script](https://github.com/m-kovalsky/Tabular/blob/master/VpaxToTabularEditor.cs)). ^Run this [script](https://github.com/m-kovalsky/Tabular/blob/master/BestPracticeRule_LongLengthColumns.cs "script") while live-connected to the model. ***Run this [script](https://github.com/m-kovalsky/Tabular/blob/master/BestPracticeRule_SplitDateAndTime.cs "script") while live-connected to the model. ## Requirements [Tabular Editor](https://tabulareditor.com/ "Tabular Editor") version 2.16.1 or higher. ## Version History * 2021-06-13 Version 1.1.2 * Modified Rules * [DAX Expressions] Use the DIVIDE function for division * Updated the rule logic to not mistake comments for division * 2021-05-26 Version 1.1.1 * Modified Rules * [DAX Expressions] Inactive relationships that are never activated * Expanded the scope to include Calculation Items ([#110](https://github.com/microsoft/Analysis-Services/issues/110)) * 2021-05-20 Version 1.1 (make sure to read the [blog post](https://powerbi.microsoft.com/en-us/blog/best-practice-rules-to-improve-your-models-performance-and-design-v1-1/ "blog post")) * New Rules * [DAX Expressions] Filter column values with proper syntax * [DAX Expressions] Fllter measure values by columns, not tables * [DAX Expressions] Inactive relationships that are never activated * [Maintenance] Perspectives with no objects * [Maintenance] Calculation groups with no calculation items * Modified Rules * [Naming Conventions] Partition name should match table name for single partition tables * Added Fix Expression (must use Tabular Editor 2.16.1 or higher) * [Error Prevention] Calculated columns must have an expression * New name: Expression-reliant objects must have an expression * [Maintenance] Objects with no description * New name: Visible objects with no description * Removed Rules * [DAX Expressions] No two measures should have the same definition * 2021-02-03 Version 1.0