Power Bi visual using matrix - powerbi-desktop

Hi I have 3 columns in the data, Company name, Innovation stage and ID. As shown below.
This is the data table
I want to show the highest innovation stage for the user submitted ID's in a column for each Company. The Innovations stage in order is 1-Idea submitted , 2-In Progress, 3-Implemented, 4-Deployed. Please let me know how to get this in visual.
The end visual I want this one or this visual The innovation stage for each ID as well.
I tried in Powerbi but I could only group the ID's for each company in a matrix. I'm not sure how to highlight the highest innovation stage in another column. What I tried Thanks!

Related

Data Query based on the drop down selection based on the dependent/independent drop down validation list

Screenshot 1:
Screenshot 2:
Hi Guys,
Need help with the Data Query based on the drop down selection based on the dependent/independent drop down validation list
Sample Images attached
I tried various formulas but was not able to get it working.
I cannot use INDIRECT because these drop down list are independent (or may be dependent)
I have a Metrics Table in my Consolidated Sheet and i have 10 teams (Team 1, Team 2...Team 9), 3 Environments (Production, Non Prod, No Field, All).
I have 10 other Sheets (Team 1, Team 2... Team 9). Each Sheet has same Metrics Table for All, Production, Non Prod, No Field. From Team 1 Sheet to Team 9 Sheet same format.
In the Consolidated, it is the same Metrics Table and format, however i have put 2 drop down Validation Lists. Independent Drop Downs (INDIRECT is not required) or what if that is made as related field and display only when the other Drop down is selected. This looks like a good one. So i will go with the dependent dropdowns
Requirement is, when i select the Team from the Team Drop Down List, and based on the selection from the dependent drop down list that is (Environment) it should pull the data from the respective teams sheet.
Not sure what is the best approach to get this working. Tried vlooks but was not able to achieve.
Hope there is a alternative to get this working.
Regards
Ajay

Visual Studio SR Report joining data from multiple Data sets?

Wondering if anyone can help me, I am currently learning, SRSS Reports and have been tasked with a Pay & Display vehicle registration report, for staff and student carparks, to show if they are registered for P&D. I have the report laid out as a 3 table column; Name, Vehicle Number and Vehicle Registration. I have from the below code set out in my datasets the Vehicle Number and Vehicle Registrations pulling through, with a parameter to filter out if is staff or student pay and display. However I am having difficulty with pulling the Staff and Student names into one name column as they are through two different datasets. Can anyone be of help at all please? TIA
I don't see the code, but in general, to join between two different datasets you use LOOKUP.
LINK
https://learn.microsoft.com/en-us/sql/reporting-services/report-design/report-builder-functions-lookup-function?view=sql-server-2017
The basic format:
=LOOKUP
(
Fields!key column from the dataset assigned to the table.Value,
Fields!key column from the dataset you are matching to.Value,
Fields!column you want to bring back.Value,
"the name of the other dataset"
)
Warning: Performance can be pretty bad if they're big datasets. You might be better off creating a new dataset that already does this work in the database.

Getting first 3 chars from "Job No." to use as filter - Jet Reports

I am struggling to get the Quantities from the Job Ledger Entries Table which I need to filter on the first 3 letters of the Job No. pulled from the Item Budget Entries..
I am new to Jet Reports and using Express.. I have tried the function:
Should I add it as a line of code = to a variable then use the variable?
My table query looks like this so far:
=NL("Table";"Item Budget Entry";$E$12:$I$12;"Headers=";$E$11:$I$11;"TableName=";"Item Budget Entry";"Filters=";$C$5:$D$6;"InclusiveLink=Item Budget Entry";$E$10;"IncludeDuplicates=";"True")
With Filters:
I think this will be hard to achive with the express version. In the Essentials version you are able to add Excel formulas to your table.
What I would do is create two tables, one with item budget entry and one with job ledger entry. And then use excel to calculate the sums.
Or use the Essentials version, which will make your life a lot easier.

Unable to Create a Sub-Total in the POWERPIVOT

I am pretty new with POWERPIVOT tables. I have searched for a bit of time now to resolve my problem but I have been unsuccessful so far. As you can see below, I have created a POWERPIVOT table in Excel 2013 that is composed of two FACT tables, which are based on: 1) a sheet where the clients can insert vote 1 budget entries; and, 2) another sheet where the clients can insert vote 5 budget entries. Also, a few DIMENSION tables have been added to the combination in order to link the Branch names and the expenditure type. Please note that this is only a simple example of what I am trying to produce.
However, my main problem is that I can't add a sub-total that would sum Salary, Operating and Revenues for Vote 1 and Vote 5 separately. What I would like to show is the following:
Please note that I have tried calculated columns and calculated fields at the best of my knowledge but the results are always showing another set of columns for Salary, Operating and Revenues but what I need is just one column that sum the three components so it displays Salary, Operating, Revenues and Sub-Total. Does anyone know how to resolve this problem that I am facing since a long time?
Thanks to gurus.
I would suggest that you start by putting both budgets in the one table and an extra column to designate Vote id., Otherwise I fearyou will need to add a calculated column concatenating the Branch and Expenditure Type in each table, then doing a LOOKUPVALUE from Vote1 on the concatenated column to Vote5 and pull back the value.

Powerpivot duplicating values

I have two tables:
First table contains sales pipeline information for accounts (contains pipeline ID, accountID, and pipeline value). Each account IDs have multiple pipeline ID
Second table includes the number of employees per account.
I included these tables to powerpivot, and I created relationship based on account ID.
I would like to create pivot that tells by Number of employees & Pipeline value by account ID and PipeID.
However, when implemented, it repeates all pipeID for each account. Even those pipeIDs which are not related to the account.
http://i.stack.imgur.com/WY1Ga.png
Could someone point me to a right direction to how I tweak the pivot to show only relevant pipeID?
I would appreciate any help you could provide...
thank you!
The numbers repeat in your pivot table because Number of Employees is not related to Pipeline ID. This is Excel's default reaction to missing relationships. To get rid of the repeating numbers and keep this pivot table as is you need to find a way to relate number of employees to a pipeline ID.
If I were modeling this, I would have a separate table that is just distinct Account IDs, to make it it's own dimension. Then have your two tables you mentioned in the question.
If you were simply writing a query against this data, how you would connect pipeline ID to number of employees? To which pipeline should an employee be attached ? If there is a way to do this manually/in a query, adjust your two tables to both include the fields on which you would join. I don't think you would be able to relate Number of Employees to Pipeline ID, so I would remove Pipeline ID from the pivot table. Then the numbers should be correct. You would want to create another pivot to show pipeline by pipeline ID per account.

Resources