Auto create google sheet with specific name from google sheet cell - autocreate

I want to create a database for different files created by multiple users.
The entry to the database is done through a google form for multiple columns.
I was able to create auto id generation in column A, Time stamp in column B, email address in Column C, and specific file name combining inputs from google form in Column K.
Each row has unique file name in column K.
I have also created trigger to auto reply the form submitter with new name, but I want to send the new generated google sheet link with specific name.
------------------Help Needed------
To auto create google sheet in google drive with filename as per column K rows.
Add the link of the new google sheet in that specific row in column P.
Change the owner of the new google sheet as per email id from column B.
Thank You-

Related

generate a hyperlink in sheet linking to matched data found in a different sheet

I have two different sheets in a workbook with data, all of this data is organized by Site ID's. What I want to do is use these site ID's to create a hyperlink in one of the data sheets that when clicked takes the user to the corresponding Site ID in the other sheet. The sheet name where I want to write the hyperlinks to is called "Report_Manual" and I want to write hyperlinks down every row down the first column. The sheet that I am hyperlinking to is called "Data". The premise Ids are located in column C for sheet "Report_Manual" and column K in sheet "Data". Below is an a ttempt of what I was trying to generate in excel for a single cell formula however the issue I ran into for this formula is that the Premise ID's in sheet "data" are variant data type while the Premise ID's in sheet "Report Manual" are integer data type. This makes even a simple formula like the one below not get any matches as the data types being matched aren't the same.
=HYPERLINK("#"&CELL("address",INDEX(Data!K3:K580001,MATCH(C3,Data!K3:K580001,0))),C3)
If anyone has any idea of a macro to solve this issue that would be extremely helpful.
If the IDs in "Data" are text, try changing your match lookup value to text:
=HYPERLINK("#"&CELL("address",INDEX(Data!K3:K580001,MATCH(TEXT(C3,0),Data!K3:K580001,0))),C3)

How to get the table name and column name from data model of selected cell in excel API

Currently I am working on Excel add in which is present in office developer tools.
But I am very much new to this. I have a requirement which is described in below lines.
Is there a way to get table name and column name from where the data is fetched(i.e if a cube formula contains a cell name as C1 then is there any possibility to get table name and column name corresponding to value in C1 in data model) based on the cell names that are present in cube formula. Currently I am getting all the Cell values corresponding to Cell names in cube formula.
But I didnt find a way to get the table specific details.
Could you please help me in achieving the above scenario.
use the watch window to examine the Range("c1") object
columnNumber = Range("c1").Column
tableName = Range("c1").ListObject.Name

How can I add columns of data from one table to another from a lookup ID number in CSV/Excel?

I am trying to recreate an old ASP member directory and put it into a Wordpress plugin (Ultimate Member) and need to change the data structure before importing.
I exported the old data into a CSV/Excel file that has a couple tables(sheets):
Member info table containing 4,000 members (each has a Firm ID field (a number i.e. 344); multiple members can belong to a Firm)
Firm table with 1,000 firms (first field is Firm ID)
In the old app the Firm ID number in the Member table calls up all of the fields from the Firm table. I need this to be all in one table to import. If I did this manually I would have to look at the Firm ID number for all 4,000 members and then paste in that firms fields from the Firm table into the Member table. Is there an easier way to do it?
If I understand correctly, you have a column A with all members, a column B with all IDs and you need a column C with the names if the firms.
If your firm list is in the same document in a second sheet (let's say 'Sheet2', you can type in cell C2:
=vlookup(B2;Sheet2!A:B;2;FALSE)
Then just drag the cell down (double click on the bottom right corner)

refresh static columns in excel along with the dynamic columns

I am working on two spread sheets say A and B, the sheet A has data that is directly being pulled from the database using a sql query in the excel connection. It has real time vendor data and keeps changing as and when we refresh the sheet.
I have another sheet B, which is pulling the data from sheet A using the vlookup formulas, in addition to the vendor data it has another static column named "notes". We add some text into the notes column for each vendor.
My problem is, whenever sheet A refreshes, the data in sheet B changes automatically but static notes column doesn't change, as the data changes the notes column is being mapped to the incorrect vendors. Is there a way we can sync the dynamically changing columns and static columns ? I want my notes column to be correctly mapped to the vendors.
I am using excel 2010 version, thanks for your help!
Cheers,
You can make an extra sheet with only the names of the vendors (by using something like =IF(COUNTIF(Sheet1!A$1:Sheet1!A1,Sheet1!A1)=1,Sheet1!A1,"") I've used sheet1 as sheet with the dynamic data. This way you select every vendor only once. Now you can write notes in cell B.
Then in your static data sheet use something like =VLOOKUP(A1,Sheet2!A$1:B18,2,FALSE) so that you find your notes by the corresponding vendor. (Sheet2 is my list of vendors with notes, cell A is the name of the vendor, B are the notes).
Does this answer your question?

How to create a Dynamic Formula in a Google Spreadsheet based on a dropdown?

I have a Google Spreadsheet of containing an Employee Schedule separated daily (each date has its own page). I need to create a SINGLE summary page with a drop down that will change a formula and display the results. I currently have the formulas setup so that each employee has their OWN page depending on the employee number that shows a quick summary of when they work for the entire month. I would like to compress that into a single sheet with a way to dynamically choose from a drop down what name to see.
Here's a link to the sheet: https://docs.google.com/spreadsheet/ccc?key=0Amfumj1fHXzYdElQSGtqZkZ2aHAtdW4wM1d2WTZnMXc&usp=sharing
And here's a direct link: https://docs.google.com/spreadsheet/ccc?key=0Amfumj1fHXzYdElQSGtqZkZ2aHAtdW4wM1d2WTZnMXc&usp=drive_web#gid=34
I'm Looking to change Cell A1 into a drop down that when selected will change the 744 Formulas to look for the selected name.
Current formula: =IF((COUNTIF('1'!B3:P3,"Katie"))=0,"","XX")
What i would like to accomplish: =IF((COUNTIF('1'!B3:P3,"DROP DOWN SELECTION FROM A1"))=0,"","XX")
Dropdown will always be a text name (Bob, Sally, Dave R, Adam, Kat, etc)
Any ideas?
Have you tried?
IF((COUNTIF('1'!B3:P3,'1'!$a$1))=0,"","XX")
In this way you only need to change the value cell A1 of the sheet called 1.
As for a dropbox, DATA > VALIDATION
- Range '1'!A1
- Criteria, select LIST WITH ITEMS