We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PERCENTAGE_FORMATTING
First of all, thank you for providing nice CI for power bi! I followed this tutorial here: https://learn.microsoft.com/en-us/power-bi/developer/projects/projects-build-pipelines
The CI Rule for PERCENTAGE_FORMATTING could be improved imo
"ID": "PERCENTAGE_FORMATTING", "Name": "[Formatting] Percentages should be formatted with thousands separators and 1 decimal", "Category": "Formatting", "Severity": 2, "Scope": "Measure", "Expression": "FormatString.Contains(\"%\") and FormatString <> \"#,0.0%;-#,0.0%;#,0.0%\"", "FixExpression": "FormatString = \"#,0.0%\\u003B-#,0.0%\\u003B#,0.0%\"", "CompatibilityLevel": 1200
Problem The expected format has the following problems
%
Suggestion
#,0.0%;-#,0.0%;#,0.0%
#,0.0\ %;-#,0.0\ %;#,0.0\ %
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First of all, thank you for providing nice CI for power bi! I followed this tutorial here: https://learn.microsoft.com/en-us/power-bi/developer/projects/projects-build-pipelines
The CI Rule for
PERCENTAGE_FORMATTING
could be improved imoProblem
The expected format has the following problems
%
(correct scientific notation has a space between number and unit)Suggestion
#,0.0%;-#,0.0%;#,0.0%
#,0.0\ %;-#,0.0\ %;#,0.0\ %
(uses spaceThe text was updated successfully, but these errors were encountered: