Link 2 Worksheet For Additional Data

Jun 18, 2008

The code is as follows:

Sub addtaskpc()

ActiveSheet.unprotect
Application.DisplayAlerts = False
myrow = Cells. Find(" Total P&C Estimate").Row - 3
mycell = Cells(myrow, 2)
mynum = Right(mycell, Len(mycell) - InStr(mycell, "#")) + 1

With Range(Cells(myrow, 2), Cells(myrow + 2, 2))
.EntireRow.Copy
.EntireRow.Insert Shift:=xlDown
End With

Application.CutCopyMode = False
Cells(myrow + 3, 2) = "Task#" & mynum
Application.DisplayAlerts = True
ActiveSheet.protect

End Sub

View 9 Replies


ADVERTISEMENT

Vlookup - Finding Additional Values From Duplicates Using Additional Column

Jan 29, 2014

I am using a spreadsheet as a score sheet for a competition. One of the columns is the student's GPA. After entering all the scores there are duplicate final scores. I need a way to have it look at the final score and then use the GPA so that it will not put a duplicate value in the final column.

al Column N is the Total Column, Column O has the Names that correspond to the Total Column. Currently I am taking this total and putting it into Column Q (High Scores) in high to low order. Column R should have the names that match the scores. But with duplicate scores, it is only putting the first name associated with the score. I would like to use the GPA as a final determining factor for the duplicate scores. The higher GPA would come before a lower GPA. I have tried to put an additional column to bring the GPA over to correspond with the High Scores Column, but could not get it to work.There are actually more names for the competition and the top 10 will be moved to a different sheet and further judged. I have attached a sample with the exact formulas that I am using.

View 1 Replies View Related

Copy And Link Data From One Worksheet To Another

Aug 14, 2013

This is what I have now. YTD_annual_interest earned_3.xlsm

When you click the "update Workbook" button, it creates new tabs using the names in Column A5 through A29. If you look at the tabs named John Jones and Phil Williams, you see what I want to happen once the tabs are named. If you look at Mary Smythe, and the rest of the sheets, this is what actually happens.

My question is two fold.

1. Can the sane button be used to grab and copy the data in the corresponding rows as the named tabs? If no, how can that be done?

2. I want to populate the new sheets with the data as in the John Jones, and Phil Williams sheets automatically.

View 13 Replies View Related

Link Row Of Data From One Worksheet To Another Based On Column Criteria

Oct 11, 2012

I have excel sheet with 4 worksheets tabs(Master, Won, Lost, No Bid). All data entered on Master. I want each row to automatically link/appear on 2nd, 3rd or 4th worksheet tab based on info in column Q (Result) which would be either 'Pending' - in which case it would stay on Master, 'Won' - would stay and copy to Won worksheet, 'Lost' - would stay andcopy to Lost worksheet, 'No Bid' - would stay and copy to No Bid worksheet. All rows would always show up on Master worksheet.

View 1 Replies View Related

VBA - Additional Loop To Copy Range To Different Worksheet

Mar 14, 2014

I'm attempting to create a worksheet to consolidate his financial data.

How to add the last loop or where to place it.

I can copy the values from the P&L sheet to the DATA sheet but I cannot discover a way to also pull the values from the BalSht sheet to the Data sheet.

I think the BalSht loop will be almost identical to the "P&L sheet loop, and be placed just below it - but I'm not successful in multiple attempts and days of trying.

How can I accomplish this? Here's the VBA code:

[Code] .....

View 3 Replies View Related

Getting Additional Data From A Reference

Jun 21, 2009

I am building a database of music files and using Excel(2007) to catalog them. As an extra bonus I'm setting up a sheet of statistics about the database with suchs things like the # of tracks and longest song, etc.

Most of it has been easy to figure out but there's one formula I'm not quite sure how to do, or the way I think it is to be done is incorrect or contains some error on my part. I already have a cell that gives me the length of the longest song in the database. What I want it to do is give me the name of the longest song. This is what I tried to do, without success, giving me an popup error telling me that the formula has an error.

View 3 Replies View Related

Match Function With Additional Data?

Aug 13, 2013

Trying to perform a match of 2 sets of data.

Data set 1 is 2 columns: A = ID number, B = Text entry
Data set 2 is 1 column: C = Text entry

All of the cells in column C can be found in column B so I'm trying to match that data but I also want to create a new column that lists the ID number for the matched cell.

For Example:

Column A
Column B
Column C
Desired Result

1
Sock
Underwear
9

[code].....

I've tried to do this MATCH and VLOOKUP. Kept getting error messages. I threw a stapler.

View 5 Replies View Related

Dropdown List And Bring In Additional Data

Feb 18, 2014

I want to use excel to create quotations for customers. (currently doing it in word)

Tab 1 is the quote, has 4 columns, part number, description, cost, yearly maintenance
Tab 2 has all the things we sell, part number, description, cost, yearly maintenance. 150 lines.

So, Tab 1, description column is a drop down box from Tab 2. Working fine.

Question. When an item is selected from the drop down, how do I get it to then bring from tab 2 the part number, cost and yearly maintenance.

View 8 Replies View Related

Finding Matches And Adding Additional Data

Mar 17, 2014

Sheet 2 in the attached sample workbook (without all the pre-existing formula's from the original) contains data that I paste in (Cols A to D).

Sheet 1 then searches that data (minus Col D) from Sheet 2 and returns "Yes" to Col I if matching data is found.

What I would like to do now is if Sheet 1 returns "Yes" then the corresponding value from Sheet 2 would be returned to Sheet 1 Col J.

So in this example the value "5" would be returned to Sheet 1 Cell J1

I already have all the formulas in place to find the matches and return "Yes", this is just to return the additional information from Col D Sheet 2 to Sheet 1 Col J..

View 3 Replies View Related

Data Validation List + One Additional Value + Default Value

Feb 20, 2010

I would like to set a data validation list with

- the list of values (A1:A10)

- at the top of the list the value "all"

- as default (when opening workbook or when changing depenend validation list) = "all"

View 9 Replies View Related

Exiting A Range To Grab Additional Data

May 8, 2006

I've set a range as DD14 to G014, then using a For Next Loop asked the program to cycle through each cell in the range. Upon findng a populated cell, it stores several bits of data from that cell (already done) and then move up one cell to record the cell value (time) and again move one cell up to record the date.

Now I did get this to work using a clunky bit of code that used activecell.offset to move the focus up the two columns and a While .... Wend loop - but using a set range and cycling through each cell it does not appear to be possible - or am I wrong?

Set MyRange(1) = Range("D14:ER14")
Set MyRange(2) = Range("D23:GN23")
For MyCounter = 1 To 2
For Each Cell In MyRange(MyCounter)
If Cell.Value = "" Then Goto Skip_Cell
MyCell = Cell.Address
MyPosition = InStr(1, Cell.Value, ",")
If MyPosition = 0 And Len(Cell.Value) >= 3 Then
Tool_Number = Left(Cell.Value, 3).....................

View 2 Replies View Related

Check If Values Exist In Range And Move Them To Another Workbook With Additional Data

Jun 9, 2014

I have 400 source files containing (among others) 8 sheets with daily results: "Fri 23", "Mon 26", "Tue 27", "Wed 28", "Thu 29", "Fri 30", "Sat 31 (if applicable)", "Mon 2".

Each sheet contains also:
State - D1
Role - D2
Staff ID - D3
Date - D4

Activity group name in column A (starting from row 8)
Activity type in column B (merged with C and D) (starting from row 8)
Activity time in columns E:GV (starting from row 8). Usually, there is none or only one value in whole range (e.g. E8:GV8). But sometimes there are two values.

Customer ID in row 6 (value appears only if time was reported in E:GV range)
CC Number in row 7 (value appears only if time was reported in E:GV range)

It's all about transferring values from all daily sheets in all files (.xls) sitting in folder C:WADFinal to one simple table (WAD_Consolidation_file.xls, sheet "Consolidated") consisted of 9 columns: Staff ID, Role, State, Date, Activity Group, Activity Type, Minutes, Customer ID, CC Number.

Additional note if two values exist in the same row they should be copied as two separate entries to consolidation file.

View 9 Replies View Related

Force Focus Back: Pop Up A Userform To Provide Instructions And Collect Some Additional Data From The User

Feb 18, 2009

I'm working on a spreadhseet which has several macros that can take up to 5 minutes to run. When the macro(s) complete, I pop up a userform to provide instructions and collect some additional data from the user.

The "problem" is that when the user moves to another application to do other work, the user form remains hidden behind the active app. I've added some text to the status bar to let the users know the processing is done, but they would like something more obvious - so, is there any way I can force focus back to Excel?

View 2 Replies View Related

How To Link 2 Worksheet

Dec 24, 2013

I attached one excel workbook...in that workbook main sheet & data sheet is there. I need formula in main sheet...while select drop down list in column of name & month data should come other columns. I tried vlookup ...but error came. I need drop down name & month only...other data should come automatically...

View 1 Replies View Related

How To Create A Link To Another Worksheet

Jan 30, 2014

im currently working on contact details for each of our client. Attached here is the sample worksheet im currently working on. As the title suggest is it possible if i click the company name i will be directed to its contact details on the other sheet?we need a worksheet that functions like this: if we click the company name, it will direct the user to its contact details or will display ONLY its contact details.

View 14 Replies View Related

Possible To Link The Name Of A Tab To A Cell In Its Corresponding Worksheet

Nov 3, 2006

if it is possible to link the name of a tab to a cell in its corresponding worksheet.

View 9 Replies View Related

How To Link Multi Worksheet

Oct 18, 2011

My company nature is real estate

I need to record every agents closed deal.

For example i have agent A, B, C & D

I have a worksheet for each agent.. but I need a overview sheet for all the deal closed.

Is there a way that if I update the overview sheet and setting the formula in A, B, C & D worksheet that when there is their name appear in the overview sheet will record in their own sheet as well, so I don't need to update the overview sheet and individual agent sheet.

View 1 Replies View Related

Copy And Link Every 3rd Row Of Spreadsheet Into Another Worksheet?

Jul 19, 2012

I want to copy and link every 3rd row of my spreadsheet into another worksheet

View 1 Replies View Related

How To Link A Cell To The Next Worksheet In Line

Oct 31, 2013

Is there a way to link a cell to the next worksheet in line and not to a specific worksheet?

I have a summary worksheet that needs revolving values, based on the 5 most current worksheets (all of which are identical).

View 2 Replies View Related

How To Set Password To Link To Open Worksheet

Apr 28, 2014

i have one page with 6 different links, each link will open one worksheet , i want to set password to each link to open there worksheet , i can update my file if it's required .

View 14 Replies View Related

Open Link From Separate Worksheet

Nov 23, 2008

I have 2 worksheets in my workbook.

One is named "Link Menu" . . . The other is "Setup"

I have an object on "Link Menu" that can be clicked to run a macro.

On the Setup sheet, I have a workable link that opens my email. Whatever link that the user would type into cell D6 on the Setup Sheet would be opened.

I want to beable to click my object on "Link Menu" and have the macro open the link from cell D6 on the Setup sheet.

View 6 Replies View Related

Paste Link Colors To Another Worksheet

Jan 22, 2009

Is there a macro that will copy the color of a cell in "worksheet 1" to a cell "worksheet 2" when the 2 worksheets are Paste Linked?

View 10 Replies View Related

Button/Link On Worksheet To Sort

Jul 12, 2009

I would like to have a button or a link on my spreadsheet that when it is clicked will sort my table with a pre-defined sort.

View 3 Replies View Related

Worksheet Link Search And Fill Formulas

Jul 18, 2008

I want to create a spreadsheet table of values that are linked other spreadsheets, a condesnsed version... I am not a total amateur and I understand the world of excel links....

However the problem lies in the fact that the source files change format every day, what i need is a formula for each cell (i know...) that can:

1. Firstly find column and row heading titles by looking for part of the title i.e. for a title like 'Occupation' i need a non case sensitive search for 'Occu'.

2. Once colum and row are found, return the intesecting value.

The formulas are needed so all I will have to do, after this is finished, is update the source files and the relevant numbers will be found automatically.

Im sure this is something that can be done with a clever array formula, setup to recognise column and row intersections based on positve returns on search variables, however this one is just outside my capabilities....

View 14 Replies View Related

Code To Unhide A Worksheet Link To Value In Cell

Feb 5, 2012

I have a workbook with daily sales information for each week in a period (4,5 or 6 weeks) depending on the fiscal year calendar. I have a dashboard to select the weekending date in cell D7. I used mscal 7.exe to embed the calendar. I need the date to remain the same, but want the calendar to show the current date. Cell H5 shows the current period;i.e. 1,2,3,4 etc. Cell H7 shows the week number of the period (1,2,3,4,5 and 6 for December).

I need vba code to showthe appropriate week's daily sales worksheet based on the info in cell H7 on the dashboard. The week number on the dashboard page is obtained fromthe calendar worksheet with a vlookup formula. These sheets are named "week 1, week 2, week 3, week 4, week 5 and week 6". I need to assign this code to a shape with the caption Create New Week.

View 1 Replies View Related

Link/copy Value/formula To New Copied Worksheet

Jul 3, 2007

I have a worksheet. In sheet3 The value of column L2 is the value of column M2 in sheet . Everytime I copy the new sheet, I have to re type the formula for this new sheet. Is there a way to give formual such that when I copy new worksheet the formula will come automatically as it always has to link from the M2 column of the previous sheet?

View 9 Replies View Related

Vba Code To Link A Text Box To A Cell In A Worksheet

Jan 12, 2007

I have built a userform and want the text boxes to access information from a worksheet when I click on the button that displays the userform.

View 3 Replies View Related

Auto-link To Another Worksheet When Text Is Entered In Cell

Dec 8, 2009

setting up a worksheet that forces a link to another worksheet when text is entered.

For instance, I will have several columns in the first worksheet (Sheet 1). For each entry, a tally ("X") will be added under the applicable columns. Most of the column headings are pretty straightforward. To keep things uncluttered, I want one of the columns to have an auto-link (?) feature so that when the user adds an X in this one column (we'll call it Column D), the user will then be auto-linked to another worksheet (Sheet 2) in the workbook. Sheet 2 will have room for more information regarding Column D, Sheet 1.

View 14 Replies View Related

Internal Link From One Worksheet To The Next - Print Preview Page

Feb 9, 2013

I have an Excel file that use an internal link from one worksheet to the next. When I click on the link, I'd like it to go directly to a print preview page so I can print that one page instead just switching to the other worksheet. Is this possible?

View 3 Replies View Related

Mapping Account . How To Add Additional Data In To Account#

Aug 21, 2009

I have two sheets. First contains Department # 0002549, and the other one contains 5 more digits(#02001 0002549). I will need to find the exact match for the first sheet to contain all 12 digits. THey are all in different order, so I probably have to match them first then add whatever the first 5 digits number. How should I tackle this issue? I was thinking to use vlookup but how could you use vlook up if only last 7 digit matches and add addtional digits to exisiting number?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved