Lookup Intersecting Data
May 9, 2007
I have a sheet(A) that I input items into cells B19:B49. Sometimes cells are left blank because there's no data to input. In cells A19:A49 I use to input remarks regarding what was put into it's adjacent cell.(B19:B49)
On a seperate sheet(B) I've labeled colums with items that I input into the cells B19:B49 on sheet(A)
let's say I title a column "Toys" and a row "Aisle 1". Where these intersect I want to display the information from sheet(A)'s remarks section cells A19:A49.
View 9 Replies
ADVERTISEMENT
Dec 31, 2006
The formula should take the info from validation lists in R13 & S13, and match them up in F3:O3 (T1Q2) & C6:C15 (T2Q2) and return the data in the intersecting cell into R9 (Where the formula is kept). In this instance, it should find 1 at I3 and the 4 at C15 and return NN to box R9.
View 10 Replies
View Related
Feb 22, 2014
In my table I want to create a user form where the individual would enter a number which would correspond for the Header Row.
and
The user would also enter a Number that would correspond for the first main column (Column B).
Based on the numbers entered, I want to find the next highest number.
For example if 61 is entered 66 would be chosen.
-Same would be for the numbers entered to find the column.
Based on the numbers entered I would like to find the intersecting cell.
Basic code I can embed in a user form?
View 1 Replies
View Related
Sep 21, 2012
Formula will go in cell H3 of Sheet 1.
I need to lookup cell H2 in column C on Sheet 2 and cell A3 in row 1 on sheet 2 and return the value at that intersection.
Is this doable?
View 3 Replies
View Related
Jun 7, 2013
My code below works. My question is when to use code below?
Code:
If Not Intersect(Target, Range("StartDate")) Is Nothing Then Exit Sub
My original code that works. If I use code above then I get into continous loop.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'Ranges Do Not Intersect! then Exit vba
If Intersect(Target, Range("StartDate")) Is Nothing Then Exit Sub
[Code].....
View 4 Replies
View Related
Oct 29, 2013
What is the correct function (vlookup, hlookup, index, match, etc.) to use to find the intersect cell.
For example, I need a formula that will find the corresponding intersect cell for 35.0 in the red header and 31.5 in the blue column, equals 37.3 (which would be L5 on the worksheet).
°F
30.0
30.5
31.0
31.5
32.0
32.5
33.0
33.5
34.0
34.5
35.0
[Code] ......
View 8 Replies
View Related
Oct 6, 2009
I have a spreadsheet named: PartNumVsJobNum
The rows, from row 3 down in column A contain part numbers.
The Columns, in row1, from B to (last column with data) contains job numbers.
On another sheet, named: Non_Completed. I have the part numbers in column A (as in the PartNumVsJobNum worksheet). In column E down are
Job Numbers (IE: 4PZ). In column G are quantity values.
So for instance if Cell (A3) = 360010 (first part number listed)
and Cell (B1) = 4PZ I need a macro the will find the rows with 360010
in Column A on sheets( Non_Completed) and try to find the job number (4PZ)
in (columnE) for one of the rows. If the job number is found, then the value
in G of the (Non_Completed) sheets should be copied to the corresponding XY
cell in the PartNumVsJobNum spreadsheet.
I will need to do this for each job number on PartNumVsJobNum Sheet.
I'm attaching a sample worksheet below.
View 14 Replies
View Related
Aug 15, 2009
Here is a sample of what I'm working with: ...
View 9 Replies
View Related
Jun 6, 2007
I am trying to do some data validation on certain cells in an OWCSpreadsheet object embedded in a userform. To check if the activecell is in the range to be validated, if tried to use
With ssSubjects.activesheet
If Not intersect(ssSubjects.activecell, .Range("$C$2, $D$2:$D$151")) Then
msg "error message..."
endif
in the SheetChange event handler for ssSubjects. It gives Runtime Error 5: Invalid Procedure Call or argument. So I tried to do it with a range with a single area, i.e.
With ssSubjects.activesheet
If Not intersect(ssSubjects.activecell, .Range("$D$2:$D$151")) Then
msg "error message..."
endif
but that gives a type mismatch. Is it possible to user intersect on a OWCSpreadsheet? How could I add data validation to a cell on a OWC spreadsheet? Is it possible? If not, what is the best way to handle data validation.
View 2 Replies
View Related
Jan 23, 2008
I have a list of items in a tab of a workbook that has attributes across the top, with an X in the intersection if the item has that attribute. For example:
Items:
Apple
Table
Paperclip
Attributes:
Red
Wood
Small
The Apple might have an "X" in the intersection of Red and Small, and the Table might only have an "X" in the intsersection with Wood.
I have another tab with five drop downs that can either be blank, or one of the attributes. I want to create a formula that will return the number of items in the list that have an "X" for all the attributes selected in the drop down. Therefore if I selected only "Small" and left the other four blank, the formula might return 2, and if I then select the next drop down and select "Red" the formula would now return 1.
Any thoughts of how I could accomplish this? I am thinking of using a SUMPRODUCT and some sort of Index Match to find the value in the cells selected by the drop down. It seems like Index only returns a row though, and not a column.
View 9 Replies
View Related
May 10, 2008
I would like to find the intersection points of all of the linesshown on the included chart. If that could be output into a table, by the day, that would be ultimately what I am after. http://bladeseri.50megs.com/Intersects.png. Guess 50megs.com doesn't allow this type of reference. Here is Geocities link http://www.geocities.com/bladex2007/Intersects.png
View 5 Replies
View Related
Jul 29, 2008
I am trying to use lookup function to lookup for data in another table (we call it table A). Unfortunately, whenever the code is not in the table A, Excel will return the data from the previous row.... is there any possible way to prevent this... in another word, if the code does not exist in the table A, I want Excel to return 0 or some other figures.
View 9 Replies
View Related
Nov 28, 2006
here is an example....
(this is on a sheet called Summary)
----A--------B --------C------- D
1Names----At Bats----Hits----Batting Average
2Tom-------38--------31------.816
3Derek------19--------14------.737
4Joey-------40--------28------.700
5Chris-------40--------27------.675
6Chuck------37--------24------.649
Using the LARGE function, Excel has created a list based on batting averages(on a separate sheet called Line-up). It looks like this.....
---A----------B
1Names----Averages
2 -----------.737
3 -----------.700
4 -----------.675
5 -----------.816
6 -----------.649
The problem I am having is figuring a way for Excel to also bring the corresponding names (after using the LARGE function to create the line up list).
View 3 Replies
View Related
Jun 12, 2007
I have a very large spreadsheet of customer information(I call it the master spreadsheet). Each row contains only 3 things: Account number, product bought, Price
Later I receive the money from the customer for that product(the pay sheet) that contains the exact same thing in the same order: Account number, Product bought, Price paid.
What I'm trying to do is compare the two spreadsheets so that when i receive the pay sheet of cusomters who have paid with the amount it will deduct it from the master sheet.
So it should compare account numbers when it finds a match then it should subtract the amount paid (column C) from the master spreadheet price column(column C also).
sometimes customers don't pay the right price so it has to be a subtraction so I can see if it was over paied, underpaid etc.
Right now I'm still doing it manually combining the two documents sorting it by account number and checking for matches in column A (account number).
View 5 Replies
View Related
Jan 28, 2009
In my workbook I have multiple sheets but I'm attaching a very simple workbook to demonstrate what I'm trying to accomplish. In my "Lookup" tab/sheet. I want to have known Latitude and Longitude data that will exist in columns A&B. Columns C & D will have address numbers and Street Name. I would like my lookup formula to find the longitude and latitude data from my "lookup" sheet, when the matching address information is typed in, in my 2009 sheet. I have to keep the street numerics and street name separate on this worksheet as well. I believe I'll need two separate lookup formulas as I need these formulas to start in cell G4 & H4 in my "GeoCoding1" sheet. Is it possible to have four columns of data to be viewed in a lookup formula? I tried this formula in cell G4 (GeoCoding1 sheet)
View 3 Replies
View Related
Dec 19, 2009
# STUDENTS THAT GOT 100% IN EACH SUBJECT IN EACH SCHOOLKKVRockfortCampionENGLISH232013MATHS382518PHYSICS422515CHEMISTRY483020BIOLOGY503523
Consider the above table. Ca someone help me understand how to report the value of the # of students that got 100% (output) in a given school (input 1), and given subject (input 2).
In other words, if the inputs are the following:
Input Cell 1: Rockfort
Input Cell 2: Pysics
Then, Output Cell should report: 25
I know one option is to use the INDEX function, but with index function, I have to provide Row_Num & Col_Num as inputs. That doesn't fit my example above, as my inputs are specific values from the leading row and the leading column of the array in question.
View 9 Replies
View Related
Mar 7, 2008
I need to pull info to additional tabs. The problem I am having is that the data is sorted daily based upon performance numbers, so the REP names in column A can change based upon the data reported in column C.
What I want to accomplish:
Pull daily data for each unique name in column A to a team tab/worksheet that will be used to report that team's daily data.
Below is a representation of the data I need to break down by Rep Name and Team.
Rep DATA DATA DATA DATA DATA DATA DATA
1 2 3 4 5 6 7 REP 2 27.5% 14
51 86 REP 1 33.3% 14
42 74 REP 3 19.3% 11
57 86 REP 5 19.6% 9
46 66 REP 4 33.3% 9 ...........................
View 9 Replies
View Related
Nov 9, 2013
see sample file, i need a formula to do like B column,
I WANT MAKE LIKE B COLUMN, COMPARE A COLUMN DATA IN C,D COLUMN AND ALL DATA SHOULD BE IN B COLUMN..
View 7 Replies
View Related
Mar 27, 2007
I have a excel spreadsheet that has employee names, email address and DOB. The DOB format is 23/03. I need a program that will lookup the DOB row and when it matches the value I enter it extracts the employee name and email address. Once it has this information I need it to copy into an already created email template and send its off. On some days there are more than 1 person with a birthday so it will need to send multiple emails.
View 7 Replies
View Related
Jul 29, 2012
i have a treatment centre with 22 rooms some with mutiple beds, i need to view occupancy in a grid form to optimise bed useage. i need to look up a date that is after arrival but before depature that matches a room number, i have tried match, index, and, vlookup etc but all this info must exist on the same row
View 1 Replies
View Related
Mar 3, 2008
I am trying to import data from an external source file (Excel) into an Excel sheet that will get uploaded into a db accounting system.
The source data varies month to month in the number of rows and need I to import 7 columns.
The upload file will be saved as a text file for the upload.
I tried to use Import External Data, but since the rows vary in size (anywhere from 1 - 2000 rows) I had to create a named range for the entire column. Upon saving this caused all rows beyond the last row of data to have quotes in them which will kill the upload.
Is there a way around this with the Import External Data, or is there a better way through some combination of INDEX, MATCH, INDIRECT or the like?
View 10 Replies
View Related
Nov 3, 2009
I have looked at previous v lookup questions however was unable to do a comparison to the queries which I have. Hope someone is able to help. Sending spreadsheet to hopefully clarify
Sheet 1 = downloaded orders
Sheet 2 = present Customer database
Q1 - sheet 2 column E - can I make the address show without the return stroke (square symbol)?
Q2 - how do I return in sheet 1 column b and c the information held on sheet 2 column b and c. I have tried using the post code as the look up but it is only returning around a 30% find, can you use post code and rest of the address (post codes could be partially different as off 2 independant databases) to find a true match, or at least increase the 30% find considerably.
View 9 Replies
View Related
Mar 6, 2008
I need to lookup a data which have 2 or more same data from the output sheet and the source sheet. i have used concatenate function but i need the invoice number also in the output sheets.
example i have a list of Order NUmber, Qty and Invoice Number. There can be a chance where the Order Number are equal but different Invoice number. I need in my output data the correct Invoice number and Qty.
View 11 Replies
View Related
Jul 16, 2009
I have a report that is run everyday showing a list of orders, on separate tabs based on facility code, that has all kinds of information. I want to be able to take today's file, and have it lookup any comments I posted on the previous day's file.
I've been messing with code all morning and can't get it right. I think my problem is the vlookup part, and I don't think my loop is right either. Here's a little bit of the code i'm trying:
View 4 Replies
View Related
Dec 7, 2006
I have store numbers and store volume groups (one letter indicating their sales volume). This is sorted in somewhat of a table - the volume groups are in row 4 going horizontal, the store numbers are under their respective volume groups going vertical.
I have all store numbers listed vertically on another sheet, starting in A2. I want to search for the store number in A2 within the volume group data and return the appropriate group header when it's found.
View 14 Replies
View Related
Dec 5, 2008
the code for lookup value of point 1 and point2 from the table ,if i key in the no.group and type of grade.
eg.1 Group10 grade a value to be point1=75 point2=20
eg.2 Group16 grade B value to be point1=125 point2=172
View 3 Replies
View Related
Jul 4, 2007
In Sheet2 l have a list of data (more complex than the sample but l expect the answer will be the same)
I would like to enter a name (ie Rob) from column A into Sheet1 and have excel copy all of the lines with the name "Rob" into the new worksheet
I think l know how to use a lookup to copy one line but dont know how to copy multiple lines with the same lookup ie Rob
******** ******************** ************************************************************************>Microsoft Excel - Broomhayes Sick.xls___Running: xl2000 : OS = Windows XP (F)ile (E)dit (V)iew (I)nsert (O)ptions (T)ools (D)ata (W)indow (H)elp (A)boutE8E9E10E11E12E13E14=
ABCDE7NameDate££Tot8Claire22/05/2007146181649Rob15/06/200718557310Claire04/06/2007119610711Sue14/04/200717345112Jane12/03/2007587813613Rob14/06/200739145314Sue28/05/20076936105Sheet1
[HtmlMaker 2.42] To see the formula in the cells just click on the cells hyperlink or click the Name box
PLEASE DO NOT QUOTE THIS TABLE IMAGE ON SAME PAGE! OTHEWISE, ERROR OF JavaScript OCCUR.
View 9 Replies
View Related
Dec 12, 2008
I have data in one column which is text based (A, B, C, D, E) and in the accompanying column is a response (1, 2, 3, 4, 5).
I want to be able to find those who answered 1 and then group to letters - so if 'A', 'D' and 'E' replied '1' then I want the result of the formula to be ADE.
I have been doing this manually and just typing the results in from a print-out but am hoping I can automate and get Excel to do the work for me to eliminate inputting errors!
View 9 Replies
View Related
Oct 22, 2009
I have two series of dates – one daily series and the other is the hourly series – running in parallel. The daily series has the values which correspond to them – YES and NO columns which can be either 1 or 0. I need for each line on the hourly series to have the corresponding value of the YES and NO from the daily sheet. I am not sure how this can be done. I need this to be done by formulas only as this sheet only represents a condensed version of the larger workbook.
View 4 Replies
View Related
Aug 20, 2006
I currently have 2 worksheets.
Is it possible to link an Excel Spreadsheet to an Access Data (formula) what I am trying to do for example:
In worksheet 1 cell A I have dates start from (01-Aug-06) and in cell B a amount (GBP 12,589.44)
In worksheet 2 cell A I have dates start from (Aug-06) and in cell B a exchange
rate (1.4526)
what I want in sheet 1 cell D formula (if A=AUG) find or mach the same from sheet 2 and get the rate * the B1)
View 4 Replies
View Related