Showing a combined Top 10 - powerbi

I'm trying to create a combined top 10 in powerBI.
I have a 'process name' then for each process, I would like powerBI to find the top 10 of that process for 'cost', then the top 10 for 'count A' then top 10 for 'count B'.
The same process could be in the top 10 for cost, count A and count B. This also means there could be more than 10 of 'process name' showing because I would like it to show the top10 for 'cost','count A' and 'count B'.
I could achieve this in excel by using sumif's, countif's and then manually filtering for top10 on each category then remove duplicates and use for my graph.
I don't know if this is possible in powerbi, could somebody provide some guidance?
Thanks
I've tried ranking by top 10 but I can only add one value in powerbi. I've also thought of seeing if there is a formula that will check for top 10 of each and then return a result, then I could create a measure for combined top 10 but I'm not that experienced yet to know if it will work

Related

PowerBi - Row total in Matrix report for measures in Direct Query report

Id appreciate some help with a problem that I would otherwise be able to crack in seconds in Excel but cant wrap my brain around in PowerBI
I have direct access to a SQL database and am looking to report on the percentage of times a person attends an Appointment. A measure 'No Show' calculates if they dont as follows:
No Show = IF(COUNT(Candidate[bookingId]) = SUM(Candidate[deleted]), 0,1)
Unfortunately, this means that the total No Show for each Candidate is 1, even if they didnt attend 2 or more appointments.
I cant cant wrap my head around whats needed to get the total No Shows for the Candidate.
In the example, the expected result is 2 No Show and 66% No show %.
[Current state and Desired State]
Ive included a sample view here >> 1
Appreciation in advance for any help

Is there a way to dynamically display/hide columns

Is there a way to dynamically display/hide columna bases on JINJA conditionals or anything similar?
So there is a SQL Editor query that I have converted to a dataset that is supposed to do some SUMs and output for example revenue per months however, I also have date filtration on top of it so then if I want to track 10 months of results by having those columns, if the filter is only for the last 2 months those results will come out empty.
If necessary and/or is unclear, I can attach images to exemplify what I mean.

Gantt chart with resource input

I'm trying to create a Gantt chart that allows the user to add or remove resource to a certain project, therefore adjusting the end date accordingly. Within the data tab I have been able to do this as the resource comes in with that data as a static figure and I've created several calculated columns to achieve this. However, when turning them all into measures and getting the visual reacting to it correctly, I'm running into problems.
So just to confirm, I can do this within the data tab, but I'm trying to do this so the user can dynamically change this end date figure, which is why I need them as measures.
This is my current calculation that isn't working.
IF(SelectedResource] = 1 , [DurationHours] - [Rec hours] * [DurationHours], etc etc
Duration hours is a date diff between the start and end date
Rec hours is based on the number of resource clicked (So if 1 is selected, one person works a 6 hour day, so 6 is returned)
I've tried different functions like calculate, sum etc and still no luck. Any help would be apricated. First post so if this is in the wrong pace or I've missed something let me know.
Cheers

Running Total By Date in Visualization

I'm trying to create a line chart visualization that shows a constantly increasing sum over time. I think this would be called a cumulative total or a running total, but most of the questions I've seen on here have been about showing a total at the bottom of a matrix, subtotals, etc. Instead, I just want to visualize the units from the previous date being added to the current date, and so on. Not sure if this would be a custom column in the dataset or if there is an existing function for this.
Any help is appreciated. Thanks!
Goto Quick Measures, in the "Calculation" dropdown, select "Totals - Running Total", pull in Base Value (what you want to aggregate) and Field (probably your calender) and here you are!

Calculated column that is for each time series

I have this Power BI file
through this link
we.tl/t-Q5Fgc0G6ZX
It has data for users and scores per date
the greph looks fine except 1 thing
This is so far good to show total users counts and passed uses count
but what I want in top of that is to have a 3rd bar shows how many users are needed to get the target of passing users for that month/year/day/quarter
Target is 60% of total number of users
How can I do that.
appreciate your help
Right click on your table at the fields pane (right side) and chose New Column. Type the following into the expression field:
60 Percentage Target = YourTable[NumberOfUsers] * 1,6
Now simple drag and drop the 60 Percentage Target column into your chart (value) and you get your desired result.