How to display a card with 90th percentile in PowerBI - powerbi

I am new to PowerBI, and am trying to use a card to display three statistics: average, medium and 90th percentile. I understand how to create a card for average, and a card for medium.
How do I create a card for 90th percentile? There is no build in function 90th percentile. I can only see sum, average, minimum, maximum, count(distinct), count, standard deviation, variance, and median option.

You'll need to create a measure, and not use the built in aggregation functions of Power BI visuals. You can use the PERCENTILE.INC function, that will find the percentile over a column. Your measure will be:
Percentile of whatever = PERCENTILE.INC('tablename'[columnname], 0.9)
You should not use columns and then use visual aggregation type in Power BI, these are called 'naked measures' it is always best to create a measure, as you can reuse them in other visuals and the Power BI engine will calculate a bit quicker.

Related

How to create an avg measure in dax similar to the built-in chart function in Power BI?

I am trying to create an average measure that calculates/acts the same way as the Average line in the Clustered column chart does.
The avg calculated measure that I want to create should also be a straight line showing the average of the whole year and not on the monthly level as it does now. I cannot get it to ignore the month context like the built-in average line function for column chart.
This is what I have tried:
Avg. Quantity:=AVERAGEX(VALUES(Dim_Time[Year]),[Quantity])
and then place it in the Clustered column with lines chart in the line area values box. As you can see on the picture it doesn't produce the same result.
How would the dax logic need be written to replicate the same reslut as the built-in average line function ?
Best regards,
Rubrix
The core problem is the average measure you have written is being filtered by the month axis on your chart. You have to tell the measure to ignore that filter. Change cal[Month] to whatever your x-axis column is.
avg line = AVERAGEX(
ADDCOLUMNS(
SUMMARIZE(
ALLSELECTED(cal[Month]),cal[Month]),
"#qty",CALCULATE([Quantity])),
[#qty])

Hi, Is there a way to build a power BI bar chart using multiple heirarchies and avoid calculating averages of averages when drilling up?

I have a dataset with columns Country, State, City, Sales. I wanted to build a drill down bar chart to drill from country to State and then City, showing the average sales. My problem is that I can't find a workaround to avoid power bi calculating the average as the average of the inmediate lower heirarchy. Since I have States with much more cities than others, when I get to category Countries, the averages are wrong, because Two States with different amount of cities are weigthed the same way when summarizing to the upper level.
Is there any way to define the granularity level on which averages should be calculated or any other workaround.
Example
example dataset
For country A, I want to show the average as 16.
Currently is doing the average between States X and Y, whose averages are 17.2 and 13, giving 15.1 as a result.
Any help on how to solve this problem will be preciated. Thanks.
avgMeasure:= CALCULATE(AVERAGE(tbl[sales]),ALLEXCEPT(tbl,tbl[country]))

Power BI 100% stacked area chart

Hi I am wanting to get the same effect as the '100% stacked column chart' but using an area chart visual. I think the best way would be to create a measure. So far I have created a measure for the percentage
Percentage = COUNT(Locations[Latest Rating]) / CALCULATE(COUNT(Locations[Latest Rating]), ALLSELECTED(Locations))
And get the values:
However want the % out of 100. So for example "Good = 1.30%" I know the calculation should be 1.30/1.91 *100 so should be 68%. Not sure the best way to calculate this. Using a legend on the visual also.
You can use DAX and the Stacked Area Chart to produce a visual totalling 100%
With a starting point of the following data
Use DAX to calculate the daily quality rating percentage, by dividing the value by the sum of ratings across all Quality Levels (Good, Outstanding etc)
Quality Rating Percentage =
DIVIDE(
SUM(Locations[Rating]),
CALCULATE(
sum(Locations[Rating]),
ALL(Locations[Quality Level])
)
)
Add the stacked area chart to view the daily change of quality with like

Get correct value in column sub total

In Power BI I am working with a matrix that shows a daily percentage.
When I add a column subtotal this sub total is summing up all the percentages for the selected days.
What I would like is that the Column sub total is showing the average percentage over the selected days.
Picture of the matrix
Thanks a lot for looking at my issue
Depends on how you calculate the percentage itself and on what granularity it exists in your data model, but you might want to play around with the ISFILTERED formula. Not sure what the name of the dimension ranging between 1 and 6 is in your graph, but let's call it day number. You can then do something like:
IF(ISFILTERED(day number), SUM(daily percentage), AVERAGE(daily percentage))
This checks if the daily percentage is filtered by the day number in the visual (matrix) or not. If it is, then it just takes the sum of the percentage (which is the percentage itself for any given day), otherwise it'll calculate the average percentage.

How to display measure as sub-columns in matrix visual in PowerBI

I want to display 3 measures under all the columns in a matrix visual.
Face amount, Market value are numeric columns in the table.
ConvexityWTD is a measure.
I want to calculate Prior, current and %change measures based on some condition and display them under each of the column.
I am getting the following table by keeping this arrangement:
How can I get it in the required format?