Power Query Editor, queries pane sort order - powerbi

The Power Query Editor sorts the queries as they are loaded which can turn into a big mess.
How can one sort the queries alphabetically in the queries pane?

I don't know that you can sort them alphabetically, but you can manually rearrange their order by clicking and dragging as well as put them into groups to organize them better.
To create a new group, right-click in the pane and select New Group... then give it an appropriate name and drag the queries you want in that group into that folder. Note that this automatically creates an "Other Queries" group where all queries not in an assigned group live.

Related

How to make slicer affect only one table on the same page in Power BI

When changing the slicer from "All" to a specific selection, it changes both tables that are on the same page. I would like it to only filter through the top Data Description table.
Here are some screenshots to better describe what I'm referring to:
the first picture has the slicer on "All"
When choosing a selection, both tables are being filtered instead of just the top table.
Thanks for your help
You need to configure the interactions of the slicer and the other visuals on the page. To do that, select the slicer, then go to Format > Edit interactions. Now all visuals show with a few icons on the top right corner. Select what interaction you want.
For more detail see https://learn.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions

How to determine interactions between filters in different pages?

I have a problem about my filters in power bi. I have 3 different pages and they have all same filters. In my first 2 pages, I want to be able to select "select all" option. For this, from format section and selection controls, I selected "select all". Its fine for my first two pages. But in the 3. page, I have to select just one option, therefore i made it "single selection" from selection controls. But when I made it single selection, first 2 pages are changed too. What can I do about this?
If all of the filters (slicers) are the same, then for the 3rd page you need to turn of sync slicers.
You can view the sync slicer settings by going to View -> Show -> Sync slicers which will open a new right hand side menu, showing you which slicers are set to sync across which pages.
For more information refer to the following article: Slicers in Power BI

Query DynamoDB from within AWS

Ive been looking around, and have not been able to find anywhere on the AWS console a place where i can query the tables i have created in DynamoDB.
Is it possible for me to run quick queries against any of the tables i have in DynamoDB from within AWS itself. Or will i actually have to go ahead and build a quick app that lets me run the queries??
I would have thought that there would be some basic tool provided that lets me run queries against the tables. If there is, its well hidden....
Any help would be great!
DynamoDB console -> Tables -> click the table you want to query -> select the Items tab
You will then see an interface to Scan or Query the table. You can change the first drop-down from "Scan" to "Query" based on what you want to do, and change the second drop-down to select the table index you want to query.

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.

UltraWinGrid Infragistics Operations

I have an Ultrawingrid to which I am binding some columns from the database. I group some of the columns with the Ultragrid group so that the result set
shows up like this:
Now using the ultrawincalc manager the user can add new calculated columns. Can the user choose which ultragroup the columns should be added to? Like can he choose the new column to go under any group?
Also if the Datasource is empty, can I set a "No records" message? If so how?
Thanks,
Dinesh
Well I figured out as how to do this through our code. so here's what we did.
We allow the users to add a calculated column through a wizard that leverages the ultarcalcmanager engine. We added a dropdown that lists the different ultagroups (Input, Calculated and Final). The user chooses the group in the dropdown and hits save.
The ultragridcolumn can be associated to the ultragridgroup by
Grid.DisplayLayout.Bands[0].Groups["DROPDOWNTEXT"].Columns.Add("New Calculated Column");
Regards,
Dinesh