I am trying to recreate a chart I have in excel where I have a count displayed as columns and a % complete as well as a secondary count displayed as lines.
In Power BI I don't seem to be able to do this as the secondary Y axis for lines appears to need to be either % or #.
Any ideas?
Related
I have this matrix created:
and I have a bar chart like this:
in my table I have a column called: account_website, account_whatsapp, account_self_service,account_mobile,account_chatbot
what i want is whenever someone clicks on the matrix, based on the row, displays the corresponding column.
ex: if someone pressed on whatsapp it will visualize the count of the account_whatsapp for the x axis and the names of the values on the y axis
I am fairly new to power bi, how can I do this ?
I have a table in PowerBI as my data source.
Table
| Time | type | count | environment |
And I have 2 charts for that table.
Line chart (x axis is Time, y axis is sum of count, legend is type)
Stacked column chart (x axis is Time, y axis is sum of count, legend is environment)
My question is when I select 1 legend in the line chart, the Stacked column chart get redrawn. The values of the selected legend is drawn with normal colors but other values is still shown as 'faded' color.
i.e. something like this
Can I make the stacked column chart to be redrawn so that the values only shown the legend which was selected in the line chart.
That's called cross filtering. If you want full filtering put the legend into a slicer next to the column chart und you'll get the desired effect.
I Have 3 tables,
1st table Measures : Contains all measures calculated using other tables and measures column names are ProgressPercentage, ProgressA and ProgressB.
2nd table Modules : This table contain distinct modules uses one of the slicer.
3rd table Iterations : This tables contains column Iteration in dates format which uses X-Axis in line graph and another column name is Area which uses for other slicer.
Using ProgressA and ProgressB I calculated ProgressPercentage.
In line graph x-axis is Iteration (Dates), Line represented in % uses measure column ProgressPercentage. In tooltip their are two values ProgressA and ProgressB.
Now issue is when I select Area from slicer then line graph is updated but not tooltip values. How I can update tooltip values using different table?
I want to create chart in powerbi. There are 2 X axis value(Date) and one Y axis value(amount). Below is the source data table.
Final table should look like below image
Output chart:
Can someone help me out to put together the chart.
From ShiftDate and BilledDate, add columns Shift_Month, Billed_Month for name of the months in Data Table
Create calculate Table Billed_Table using DAX: Billed_Table = SUMMARIZE(Data, Data[Billed_month], "Sum_Billed", CALCULATE(SUM(Data[Amount])))
Create calculate Table Shift_Table using DAX:Shift_Table = SUMMARIZE(Data, Data[Shift_Month], "Sum_Shift", CALCULATE(SUM(Data[Amount])))
Then join Billed_Table and Shift_Table
Now go to power view and plot column chart using join_table data
I am infant to power bi , And Below is the data which resembles to my
data set in Power BI
And below is result for the above data table
But my client wan'ts the dot lines in it and he is expecting the
report result to be as below
Can any one please help me how can I make it
First unpivot the Quarter columns:
-Click 'Edit Queries' at the top
-Select "Transform' tab
-Select the 4 quarter columns (Select 1st column, shift click last column to selct them
-Select 'Unpivot Columns'
-Back to home tab, close and apply
Now add a line chart visual. Place the new column (Which depicts the quarter) in the 'Axis' field. Place the values for the companies in the Values field.