How to transpose in power bi desktop - powerbi

I am having a table with 3 columns, where I need to transpose using Power Bi desktop. This is the structure I need:
I started using Power Query Editor, but seems like it to not transforming the way I need in the picture above. Any ideas?

Highlight the row column and select unpivot other columns from the transform tab on the ribbon.

Related

How to transpose a "Measure" table in Power BI desktop?

I am having a "Measure" table in PowerBI desktop which I want to transpose it in Query Editor, I know how to do this if it is not a measure or calculated table, any ideas how to achieve it with measure table?
You can't go back with PowerPivot tables to PowerQuery. Your only option is to stay in PowerPivot and use DAX. Unfortunately there is no transpose function in DAX, so you basically have to construct your transposed table manually using the SELECTCOLUMNS() and FILTER() functions.
In the Packt library there is a recipe how to achieve that: Transposing tables
Depending on your data model it might be easier to create a transposed copy of your table in PQ before you start adding measures in PP.

Power BI Blank Drillthrough Results

I have a single table in Power BI. There are no other tables being used, everything is in 1 table.
When I drill down, I don't get any results to come back despite having numbers in my Matrix Visual.
Any idea why this might be?
Select one of the visuals where the drill through is working.
On the list of filters off to the right, put whatever column(s) your visual is using as a filter.
This should solve everything.

How to show each date in a column just once (like Tableau does)?

I have the following table in Power BI Desktop table visualization:
I don't like that the same dates are repeated over many rows, and would like to show each day just once. Here's what I mean, this is made with Tableau:
How can I do this in Power BI? Thanks!
I found the answer here: how to group the values in power bi?. It's not as pretty, but it works.
In short:
1: changed the visualization from Table to Matrix
2: moved both the date and the middle column to the "Rows" field of the Matrix

Create a check box for each row inside a power bi table

I am trying to add a check box to each row inside a power bi table.
Post clicking I would want to lock/highlight the row.
I know this is pretty simple to create on a web page.
Could anyone please suggest any ways of achieving this in power bi.
This sort of functionality is not available in Power BI. You can add highlighting to the row using conditional formatting and/or add a KPI icon

how to group the values in power bi?

I am trying to create a power bi replicating the tableau report. In tableau, it automatically group the values when we place the columns in rows pane. But in Power BI, I am not able to group the exact same way of tableau report. Please help me how to group the values in report pane of power bi.
I have tried table and matrix visualization but I am not getting the same view like tableau
Need to create the same visuals like tableau report. Attached images
As mentioned in this post, there is no exact visual copy of the Tableau visual you show for PowerBI. Instead, it offers the matrix visual where indentation is used to show groups. This, for instance, allows for a nice presentation of subtotals in your visual, something Tableau does differently. If you are really keen on getting the visual appeal closer alike, try changing the indentation under Formatting Options > Row Headers > Stepped layout indentation. That's the closest you are going to get given the current constraints of Power BI.