I need to multiply the no.of grants into the expected attrition rate based on dates. In image 3 i have the rates and now for image 2, i need to multiply the rates in image based on the date. Im new to power bi and i'm not able to work it out.
Related
I am beginner with power BI and facing a little problem.
Actually I am working with a covid dataset. In one of the chart, I have to plot p-scores based on different age ranges over the years 2020-2022. When I put for example p-score of age range 15-65 on y axis, it gives me count of that where I just want to see the distribution of p-scores with no calculation.
Any solution would be highly appreciated. enter image description here
I have power BI matrix visual which look like this
i want to calculate percentage for alternate rows
percentage for "PERSONLA_DETAIL_FILLED" will be (130237/224232) * 100
similarly for "OTP_SUBMIT_VALID" will be (119492/130237) * 100 and so on I am not able to write measure for the same .
Data snap look like this
I have a spreadsheet that has information on credit card applications. In Power BI, I have created calculations to calculate the number of applications (COUNT), and other calculated measures that give me the number of applications based on different filters (CALCULATE).
I then created a slicer that slices the data based on type of card. So say I have a line chart that shows the number of applications for males and females, I can then use the slicer to select different cards.
The trouble I'm running into, is that some cards have a lot more applicants than another. This can be difficult for display, as I set certain Y Axis ranges for the data labels to be clear. So if I have one line chart that the minimum is 100 and max is 500 for one card, if I click on another card in the slicer, then the Y axis size is still 100 - 500, which isn't great if another card in the slicer pane only has 50 applicants.
Does anyone know of a creative way to dynamically change the Y Axis sizes, based on a slicer selection?
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.
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?