Indexing A Range From Another Spreadsheet

Dec 9, 2008

I want to combine & I may be dense, but I just haven't gotten the hang of building multiple functions yet, especially when it comes to knowing when to add zeros & ones, for the index & match functions, as an example.

indexing a range from another spreadsheet, but when I tried to use it again on a different range & copied & pasted and changed the ranges, I get #REF!, which I know means I screwed something up, I'm just not sure what & I don't know what the 1's & 0's mean.

=INDEX(RiskLevel,MATCH(1,INDEX(FREQUENCY(E5,RiskScore),0),0))

View 7 Replies


ADVERTISEMENT

Indexing Top X Highest Of A Range

Aug 22, 2006

In the attached sheet, I'm trying to get excel to return the top 5 values in an array, based on the preceding cell. This example is for a Football League, in which the QBs, RBs and WRs all have different salaries. The objective is to return the salaries of the top 5 paid people in each. Don't need to return the name, just the salary amount, so that an average can then be taken to figure future salaries.

View 5 Replies View Related

Indexing A Row Using Only 1 Cloumn

Sep 22, 2009

find a row containing text. Like when opening a PDF file with Excel, all the pdf code is in column A. I would like to create a formula that would search column A for the text "Example" and have the row number be the result.

I've tried using index, match, find, search, etc.. and nothing seems to work.

View 5 Replies View Related

Matching Or Indexing

Oct 22, 2007

I have to find the maximum value of a column (J16:J115) and refer to the name in column A corresponding with the number found... everything works perfectly with :

=INDEX(A16:A115;MATCH(LARGE(J16:J115;1);J16:J115;0))

But when there are two maximum values it only gives me the first one... is there a way I can get both (or more) names in different cells ?

View 9 Replies View Related

Query Regarding Indexing Values

Jan 6, 2010

In the attached file the
„«All the data is available in the details sheet
„«Input field is B20.
„«There are 6 Rate Schemes. All the input fields are present in all
„«Again there are 3 Subline of Business

Need .. when I put a input field and select a C15 and C17 the Exposure Curve, Flexa, Other should get displayed.
Hope I made the scenario understandable.

View 2 Replies View Related

Advanced Indexing/VLOOKUP

Jun 3, 2009

I have two worksheets that are formatted differently. One has a list of employees and the other has the same list of employees but with associated employee IDs. I need to pull the employee IDs to the other sheet.

Let's call the two worksheets A and B. On Worksheet A (the one I'm working with), here's the format (column A):

Employee Name
Doe, Jane
Doe, John
Roberts, George

In worksheet B, here's the format (column A | B | C):

Last Name | First Name | Employee ID
Doe | Jane | 1105
Doe | John | 1106
Roberts | George | 1107................

View 9 Replies View Related

Array Formula With Indexing And If Statements?

Feb 23, 2014

I am trying to create a form where my staff can use a drop down box to select their role on the drop down bar on the "Template" tab- M12 (highlighted orange) that can reference to same role on "sheet 2" and show the corresponding data in column C, highlighted in green. The output of the formula starts on "Template!23" - highlighted in yellow. I have started to use an array formula but cannot fully utilise it as I need the row reference needs to be variable. Is it possible to use multiple "ifs" to account for the changing inputs on the drop down bar? What do you think? <attached>

View 5 Replies View Related

Indexing And Vlookup Multiple Information

Nov 11, 2009

I am trying to index and match information and trying to show the multiple values that go with it. Then I am trying to do the same with vlookup.

View 4 Replies View Related

Indexing Complete Datasets For Entered Value

Nov 2, 2013

indexing complete data sets for each entered value. see example to better understand what I am trying to do. I have been trying for weeks.

Steve
INDEX.xlsx

View 14 Replies View Related

Faster Way To Loop For Price Indexing

Dec 10, 2009

I'm trying to improve a code that Indexes a series of prices to a day (the first day of a range). I'm doing this to numerous named ranges. The code that i build takes ages to do this:

View 9 Replies View Related

Adding Author To Indexing File

Jul 2, 2014

I'm trying to get a document together that will spit out an index of all the files in a folder/subfolder with various attributes like title name/ hyperlink to the file/ type/ etc. How to add a function that will create a column/pull data for the author of the files I am indexing.

Code:
Public fPath As String
Public IsSubFolder As Boolean
Public iRow As Long
Public FSO As Scripting.FileSystemObject
Public SourceFolder As Scripting.folder, SubFolder As Scripting.folder
Public FileItem As Scripting.File
Public IsFileTypeExists As Boolean

[Code] ...........

How to get a column that lists the author of the document.

View 2 Replies View Related

'indexing' Of Files (not Index Function)

Aug 29, 2008

I have a folder with about a thousand files in it, each one holds one worksheet.

What i need is a new file which lists all these file names in column A and, in column b, the value from cell A1 in each file against the file name, i.e.

book1 Apple
book2 Banana

I can list the files in the folder using dos, but cant rip the a1 cell values out,

so I need to open each workbook in turn, record the file name, and then record the value in cell A1 against it.

View 9 Replies View Related

Indexing Hyperlinks And Thier Locations

Nov 24, 2008

I would like to create and Index/List of all the Hyperlinks in a workbood and the locations of those links. It can be a little as just the tab/worksheet the hyperlink is located. I can then import those links into a spider to check to see if they are broken or not.

The following code is close, but I need it to loop through the workbook and list the locations as well.

Sub test()
For Each h In ActiveSheet.Hyperlinks
With ActiveCell
.Value = h.Address
.Offset(1).Activate
End With
Next h
End Sub

View 9 Replies View Related

Indexing Not Working On Copy / Paste Text?

Feb 6, 2014

I copied and pasted text (last names) from Website A into File A. Then did the same from Website B into File B. I wrote index match formulas to compare columns between files. I've done this literally hundreds of times, and it's always worked. This time, however, I get ZERO matches - even though there are lots of them. Troubleshooting was straight-forward: it has to be website B. (Strange thing is, I HAVE used text from website B before in similar applications with no problems.) Something in the way they present the data is preventing matches. (Everything works when I manually type over text from Website B.) It's not an upper case/lower case problem. I tried copy-pasting values only - to no avail.

View 4 Replies View Related

Indexing In VBA - Getting Application 1004 Error Message

Oct 10, 2013

What is wrong in this Indexing code.

Code:
Range("R6").Select ActiveCell.FormulaR1C1 = "=IF($Q6="","",INDEX('Worker-Exempt'!B:B,MATCH($Q6,'Worker-Exempt'!A:A,0)))"

I get application 1004 error msg.

Cross Posting

HTML Code: [URL] ........

View 9 Replies View Related

Indexing With Mutiple Results - Dynamic Source

Mar 28, 2009

I was able to come up with a formula that returns multiple results when indexing rather than just the first match.

Now the problem I have is that my source table is going to vary in size. My source table in the formula I got working below is a dynamically named range 'ImportedData'. The data in this table will always start on Row 8 but the last row of the table will vary, so the bold/red areas of the formula need to be dynamic.

how I might modify this formula to allow for the dynamic table size?

=IF(ROWS(B$19:B19)

View 9 Replies View Related

Row Indexing Formula To Only Display Non Blank Cell Values

May 30, 2014

In range B4:M4 some cells contain values and some are blank. I am trying to write a formula that will omit the blank values and just give me the nonblank values. The code below returns the FIRST nonblank value, but I can't seem to figure out how to drag it across a row to get the others. I want to ensure that the numbers stay in the same order (so no largest/smallest formulas), but the blank cell values need to be removed.

This would then need to be repeated for (B5:M5, B6:M6, ETC).

[Code] .....

View 2 Replies View Related

Indexing Dates, Blank On One Sheet Displaying As 00/01/1900

Feb 12, 2010

I am indexing dates from one workbook to another.

There are some blanks in the list that I am using, and I need to the blanks to stay as blanks in the sheet that I am indexing to, however they are displayng as 00/01/1900.

View 4 Replies View Related

Adding Author Column To Excel Indexing Sheet

Jul 2, 2014

I'm trying to get a document together that will spit out an index of all the files in a folder/subfolder with various attributes like title name/ hyperlink to the file/ type/ etc. How to add a function that will create a column/pull data for the author of the files I am indexing.

[Code] .....

Here's the website: [URL] .....

How to get a column that lists the author of the document.

View 3 Replies View Related

Indexing Multiple Columns To Return A Result From A Separate Column

Oct 22, 2009

Sheet2:
col A = contains the style#
col B = contains the color of the style
col C = contains the size of the style
col D = contains the qty of the style,color, size

Sheet1:

I would like to do the following:

A1 = input the style #
B1 = input the color of that style
C1 = input the size of that style

then D1 should automatically contain the qty of the mentioned style, color, and size.

View 4 Replies View Related

If Statement/indexing: Column To Adjust Based On The Date Of The Transaction/trip

Jun 17, 2009

I have an employee expense voucher with a column that calculates mileage. I also have a column that lists what the mileage rate is. I'd like for that column to adjust based on the date of the transaction/trip.

Here's an example. Trip between 7/1/08 - 12/31/08 = .585 mileage. Trip between 1/1/09 - 12/31/09 = .405 mileage. If someone turns in a receipt for a trip taken on 11/13/08, I want the form to adjust the mileage rate to .585. Wasn't sure if this is an indexing kind of thing, or if there's an if statement I could use.

View 3 Replies View Related

Set Range On Spreadsheet

Jan 14, 2010

I am using Spreadsheet control on User form and i just want to set Range as we do for worksheets. but unfortunately it is not working here. and generates the error

Set rng = Spreadsheet1.Range("A2:A" & Spreadsheet1.Range("A" & Spreadsheet1.Rows.Count).End(xlUp).Row)

here spreadsheet1 is spreadsheet control and Error is "Type Mismatch"

View 9 Replies View Related

Spreadsheet Control With Range

Jan 16, 2010

Hi all im having a tough time trying to figure out a way to select a range (which will be the entire row )based on a condition that will be data selected from a combobox and display that range in a userform with spreadsheet contol 9

what i have so far is a worksheet with all the data.
i have a combobox on a userform that is prefilled with data from a specific column

every thing is working except when i select the entire row how do i change that to a range that i can use in the spreadsheet control 9 that is added to the userform.

View 11 Replies View Related

Extract Range Of Cell From Another Spreadsheet To New One?

Aug 20, 2014

Usually I use data connections (using http://www.....) to pull several worksheets(tables) from another spreadsheet. Currently I had a set of worksheets that created in an unstructured manner, the tables are not entered from Row 1 (see attached mockup). Besides using VBA programming, if there a simple way to connect and extract these tables to a fresh spreadsheet for computation. So the users can continue to perform data-entry and this consolidated spreadsheet will refresh whenever open for reporting and visualisation.

View 4 Replies View Related

Range- Spreadsheet With A List Of Students

Apr 15, 2008

i have a spreadsheet with a list of students in it and next to it i have a column with their current score and the letter equivilant (A*-U)
so say

joe bloggs 615 B
Joe bog 750 A*

etc

is there a way if I list the grading boundaries for it to work out how many marks are required for the student to reach the next grade?

boundaries are

A* 728
A 669
B 610
C 554
D 467
E 383
F 298
G 214
U under 213

View 9 Replies View Related

Navigation Through Spreadsheet Using Shortcuts - Not Range Names

Sep 10, 2009

I currently have a navigation menu with 9 options however these options are based on Range names that I have set up.

The concern is that if someone deletes the cell that contains the range name, obviously that option in the navigation won't work, nor would you want it to.

However if someone re-enters a cell that you would want linked up with the navigation there's a lot more action involved.

What i'm looking for is a macro that can be used through a button, Idealy i'd like the macro to search through column "B" and look for key labels (ex: "Ground Floor", "1st Floor" "2nd Floor" etc.) and have each button set up for it's respective search data (ex. Ground button searches only "Ground Floor")

View 10 Replies View Related

Formatting - Format A Column Or Range In A Spreadsheet

Feb 22, 2007

Is there a way to format a column or range in a spreadsheet that would prevent other formats from being pasted from another spreadsheet?

Obscure question I know...i.e. column A should always be the same font, size, color, border and text format. I want to prevent the user from copying junk from another spreadsheet & pasting all into column A; similar to paste special > values.

View 9 Replies View Related

Protection Of Tabs Within A Spreadsheet Or A Range Of Cells

Nov 2, 2007

Can you passwrod protect a tab or a range of cells within a spreadsheet

View 9 Replies View Related

Copy Partial Data To New Range In Spreadsheet

Feb 19, 2008

I have data in columns a - d; the number of records can vary from a few to a huge number which (to me) makes the problem more complex.

I need a macro that will copy every 3rd record into rows e - h; and every 5th record into columns i - l, etc.;

View 9 Replies View Related

Email As Attachement One Spreadsheet From Range List

Feb 26, 2009

I am trying to send as an attachment "sheet1" to a email list in "sheet2" range "A1-A50"
I looked at Ron De Bruin examples but didn't find one to email a single sheet from a list.

I looked at examples at Mr. Excel but didn't find it. I apologize if I overlooked it. If I did just point me to it.

View 9 Replies View Related







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