I was looking for preparing a stock chart file. In this file, I want to have an ability to retrieve stock price when I change code. (for example from AMZN to GOOG) after doing so it should change the price. For this, I am using power query function where I have pulled historical data also. I have the excel sheet ready but problem is that I need to manually change code by going into Advance editor mode in power query. I thought to reference Cell A1 in sheet so I just need to change the code in A1 cell and it refresh the price. Is it possible? Please help me. I am using excel 2016.
Thanks,
Sharmil
Certainly,you should convert cell A1 to table(press Ctrl+T),and use= Excel.CurrentWorkbook(){[Name="YourTableName"]}[Content] to reference A1.
Related
I'm new to Stack overflow and new to SSRS report building. I'm currently building a report that needs to display each option from and option set in a different column I also need to pull date a last and next date range for each option it is page grouped by a company name and then further grouped by the employee's full name. any help would be very much appreciated.
Excel mock-up
Report table layout
I need it to out put like the Excel image ideally if possible, I've found the value id's but i'm stumped as to how if I can at all display them in the columns I've labelled.
It looks like you need to use a matrix control in your report. It will display your values in a pivot view like Excel.
Microsoft Documentation
first time poster here.
I think this is the first time I've not managed to find what I'm looking for via the search.
I have recently started a project to increase my understanding of Excel/Google Sheets. This project is something I will be doing in my own time with no financial gain.
I am however having some difficulty with my formulas. What I'm looking for is a nudge in the right direction or maybe an example from someone more experienced than me. I have linked a Google Sheets document below for anyone interested in helping me with my formulas.
https://docs.google.com/spreadsheets/d/1mY13e-75dBYfKgkjV8dFFFEvxC838nGNxPrUdusc0PA/edit?usp=sharing
Anyone using the above link has comment capability.
As you can see my formula in the "results" cells will search my "Dishwasher data" sheet and pull all the relevant data through to the correct cell. While this was completely intended (took me ages), I would like to add a second alternative criteria to my search.
While I want to be able to search by "product code" I also want the ability to search by "Model number", as an alternative means of searching and pulling the data through. I have tried a few different things like using IFERROR instead of ISERROR etc. I just cant seem to figure it out.
Part 2:
The second stage of my project was to have a more advanced search tool. You will see the "tools" under "list searches".
Example 1, I want to be able to search and display a list of all models under or equal to "X dB", the list should be displayed under D13,J13 and below.
The more complex of the two "advanced" searches would be the decor panel height. Displaying all models where the "customer decor panel height" is between the max and min the appliance can support. So a <=Max >=Min formula, but I still have no idea how to form a list with all "viable" options.
I'm assuming some sort of FILTER can be used possibly?
Again this ties in with my first formulaic issue, I do not understand how to have optional or alternative criteria in a formula that can both be displayed in the same cell range.
Any help on this would be much appreciated!
Thank you for your time!
I left some comments on your sheet regarding using list of items rather than typing in values.
I've made a copy of your sheet and can lookup things via model number or product code.
I used this in the product code lookup
=If(A4>0,vlookup(A4,'Dishwasher Data'!B:I,1,False),vlookup(A7,'Dishwasher Data'!A:I,2,FALSE))
This looks at cell A4, if it has data, it looks it up, if there is no data in A4, it will lookup A7 instead (Model number)
This formula can be repeated in the sheet and adjusted.
For the filter on the noise level.
Put this somewhere and enter a noise level.
=FILTER('Dishwasher Data'!A:A,'Dishwasher Data'!H:H <=A11)
At the moment it's only returning the Model number.
If you wanted the whole table, change 'Dishwasher Data'!A:A to 'Dishwasher Data'!A:I
Here is my demo sheet.
My demo sheet
I have created a layout that works just fine. However, when I export it to Excel, the data starts in column C. Another person in our department has created a different layout. When they export their reports to Excel, the data starts in column B. I've looked at both layouts and don't see any difference.
I would like to get my reports to display data in column B as well so we are consistent.
Any suggestions would be appreciated. Thanks for your help.....
Probably the answer is that the table in your report does not start at exactly the 0,0 position. Select it and in the Properties panel on the right hand side scroll down to Position, make sure location says "0cm, 0cm".
We have a report developed in another tool that the user exports to Excel to manipulate the data. In the old tool, the columns are being saved in the same order as the dataset returned by the stored procedure. But in SSRS the columns sort is changed to the order that they are displayed on the screen. The user is a nut case and can't convince her to change the order of the columns on the screen report to match her old report sort, but on the other hand does not want to adapt to the new column order. Unfortunately the easiest solution (i.e. replacing the user :-)) is not implementable. Is there a property that I can use to change the sorting on the columns when they are exported. Without knowing much about it, I imagined ZIndex would have done something like that. But it is set to 0 and disabled, so I can't change it's value.
Thanks
I know it's years later but for the benefit of anyone who is in this predicament, a similar idea: in the same report, you create another tablix that will be your "output" tablix, where you arrange things as you please using the same dataset. Make this tablix with visibility hidden, and set it to "output" as necessary. Turn off all outputs from the first tablix. So you have basically a ghost tablix that only works when you export to csv.
I have a straight up question about the SSAS
Is it possible to filter out Dimension Members that have no Values in Measures?
Thanks in advance
Your image looks like you are browsing using Excel. Drop-down boxes in Excel show all dimension members. You can write MDX to populate SSRS or other reporting application drop-downs with only values that are tied to a measure or measure group using Exists or NonEmpty, but Excel doesn't have a way to do this. If you are never going to have data before 7/1/2007, you can use a view or named query to only bring dates from that day forward into your cube. If you use slicers instead of drop-down boxes in Excel, it is easier to see which dimension members have no data.