Power BI User Input Parameters? - powerbi

Is there a way for me to provide input parameters that are adjustable by the user at run time for PowerBI reports? I have a graph that shows employee data by hour, but I want the user to be able to choose different employees.

You can make a dropdown slicer from your employee dimension. The user can select an employee from there.
Steps:
Drag a slicer to the report (next to table visual)
Add employee name
In the right top corner you can choose dropdown.
Please be sure you have a star schema
Another option is that you allow the user to search in the filter, if you have many employees.

Related

Oracle Apex - Master Detail - How to add another report region using the master detail datepicker

I have a Master Detail* report page created using the App Builder -> Create Page. The master report shows customer orders (ORDERS table). The detail report shows the products that the customer ordered (ORDER_ITEMS table).
The master report (ORDERS table) has a date column (ORDER_DATE). In the report, the date column header is a datepicker item in which you can select an dropdown of past dates to sort the report.
I would like to include another report region at the bottom of this page to show the total dollars from the range. (Ex: if a user selects Last Month, then I want the report to show the sum of the total dollars from last month).
I've been able to do this in a custom page that I've built using by adding two datepicker items.
However, in a 'pre-built' Master Detail page using App Builder, I don't see the datepicker item to manipulate.
How can I grab the datepicker item and access it's functions (to query results for the additional report) and dynamic actions (region refresh)
That column header is not a page item, it is the native column filter functionality from the interactive grid component. It's not possible to "Grab it and put it elsewhere". There are a couple of options.
Create a separate date picker item in a region above the report where the user selects the from date or range and refresh master region when values change. Make sure to disable column filtering then in the interactive grid region.
Another option is to add a dynamic sum at the bottom of the report. That is described here. Or calculate the sum and put it in a page item. The post above references an example in the interactive grid cookbook that you can use.

User to choose different Date ranges in PowerBI Filter

How to write query to user to choose 2 different Date ranges and get the sales details in PowerBI
Allows user to select different day range, see below. Also allow user to select either Compare to Previous Period, or Previous Year.

Is there a option to add Next & Back button to List slicer in Power BI?

Team,
I have slicer added in my dashboard with list view and its contains the more than 20 records.
My leadership team review each records details by selecting each record in list view slicer (Single select).
I want that my manager need not to open list slicer each time and select record, instead i want to add button to move to next record in slicer.
is there a way to create option like this in power bi?
Regards,
SK

How to develop a reverse slicer in PowerBI?

Please I need your help.
I am doing a report in PowerBi in live connection.
The model is in an azure analysis service and I am devolopping report with PowerBi.
I need to prevent the user from selecting the same value in both slicers
In my report I have 2 slicers that are duplicated ( I am using them like a role playing dimension)
I want that when I Select "A" in the 1rst slicer I will have in the 2nd slicer the values except "A".
The goal is to prevent the user from selecting the same value in both slicers
What I want is like a reverse slicer.
Do you know how I could do it ?
Thanks for your help.

Power Bi: Link Tables

In power bi, I have a table Customer in which I am keeping the Id, name and other details of customer. I have another table named Customer_CustomerRole_Mapping which contains CustomerId and its CustomerRoleId. I have another table name CustomerRoles which contains name and id of each role.
CustomerRoles and Customer_CustomerRole_Mapping are linked together.
In Power Bi, I want to show customers count role wise in a pie chart? I tried but I am unable to apply linkage between these tables. I am new to Power Bi.
Your Tables:
Customer
Role
CustomerInRole
The Table "Customer" is not necessary for your Report because you only need to know the count of rows in "CustomerInRole" per row in "Role". So just add a pie chart, use the name of the role in the axis (or legend) and the (distinct) count of Field "CustomerIDs" in "CustomerInRole"
That is all you need ;-)
please find table relation is one-way or two-way . if it is complex and you are going for two way then it will not show.
To have things clear I would add the role to your customer's table. There's no use in keeping things in a relational way when you start playing with BI.
This can easily be done in the query editor. On the home tab, click "Edit Queries"
And there you'll have to click "Merge queries", also on the home tab completely on the right.
In the upper table you select the CustomerID-column and Customer_CustomerRole_Mapping table, select the right ID for that table. After clicking "Ok" you can expand the new columns (by right clicking the merged query-column). You will have to repeat this step to add the roles to the Customer table, but in this second round you will have to work with selectint the roleId's.
After all this you can delete the columns that you don't need anymore from this table and just keep the role.
In the pie chart you then just add the role and select "Count".
It is handy to solve it like this when you have other Fact-tables, and you want to use Role as a Dimension.
You can be linking of tables in power bi desktop go dashboard and click on the third menu as showing in image Relation Management data table image whatever you want make relation with table just drag and drop to link within multiple and single tables with parent and child tables and if you want to delete this relation just go on relation arrow(line) do right click on line and delete it and save file.
Cheers.