Display Cell X Of Range Based On Another Cell Number

Feb 18, 2008

I am trying to create a table, based on what people predict in sports games. I have most of it in place, but I have hit a brick wall where one part of it is concerned. For example, cells M43:M56 have the scores for each week of what one person predicted., so it could be 2,5,7,2 and so on. What I then need the table to do is determine which round or week it is and display the relevant score. So based on the above let's say it's round 3, and his score would be 7 for the week, and the cell to the right of this shows the week's score plus his total score so far.

View 2 Replies


ADVERTISEMENT

Display Named Range Contents Based On Text In Cell

Aug 24, 2009

I have some dynamic named ranges in sheet1, and in sheet2 I have data validation dropdown list which has the names of all the DNR's in it.

What I want it to do (in sheet3, no less) is for the user to be able to pick a named range from the dropdown list, and have a particular column in sheet3 then display that entire named range.

I have made a 'data' worksheet which is the source for the data validation in sheet2. Each item in the list identically matches the name of each of the named ranges. I was hoping to be able to use some form of =INDIRECT but alas, no such luck.

So it's almost like a copy and paste function I'm after, where:

If you pick "Schedule_From" out of the DD-list, then DNR 'Schedule_From' is what is pasted in Column B in Sheet3.

DON'T want to use a PivotTable.

View 9 Replies View Related

Listing Number In A Cell To Display List Of Items In Another Cell

Apr 24, 2014

When inserting "1" in the cell under soup, i was thinking it will bring up a list of its ingredients and how much of that ingredient. The values are listed in the same spread sheet below.

The amount of the ingredient is in D50 (80grams) and the item type next to it in E50(onion)

Is it possible to put in "1" soup then it displays all the items in both those cells range example(D50-E50 to D60-E60)?
Is it possible to put the value "2" in soup and it shows double the measurements? example (160grams) (onion)

View 4 Replies View Related

Calculate X Number Of Rows In Range Based On Cell Value

Oct 2, 2006

I can't seem to make SumIF or Vlookup do what I want here.

I have a table like that below. I also have a cell on the same sheet called CurrentPeriod in which a user can enter a period number corresponding with one of the values in the first column.

If someone enters 3 in "CurrentPeriod" I want to sum the first three values in the "Actual" column and then divide the result by the sum of the first three values in the "Target" column (effectively giving a percentage of target at the end of period 3)

Period Target Actual %Target
1 74 68 91.9%
2 81 71 87.7%
3 76 87 114.5%
4 76 68 89.5%
5 71 89 125.4%
6 69 81 117.4%

View 3 Replies View Related

Create Range Based On Starting Cell Plus A Number Sent To Formula

Mar 13, 2014

I'm using the VBA code below for a piece of code.

[Code] .....

However, I want to use this same function in another place, without the limit set on the cells that will be cleared.

What I would like to do is send the formula the cell to start at (E14), offset that by one column, and then send a number of rows. With that, create the range to be cleared.

Something like:

[Code] .....

View 3 Replies View Related

How Do I Fill In A Cell Based On The Relationship Of The Number Within A Range Of Numbers

Feb 6, 2009

This is a spreadsheet for a real estate office. The boss gave me a spreadsheet that he created to give a seller an idea how much money he will walk away with at closing. The spreadsheet includes all of the pertinate numbers but there is one item that he would like to have filled in automatically. When selling a house, you use a title service that charges a fee based on the price of the house. So, for example, If the house sells for $0 to $50,000, then let's say the fee is $112. If the house sells for $50,000 to $60,000, then the fee is $118. If the house sells for $60,000 to $70,000, then the fee is $125, and so on up to 1.5 million.

The boss' spreadsheet includes 5 different selling price scenarios, which I guess doesn't matter since you do the first one and the rest follow the same pattern.

So how do I automatically fill in a cell based on how one number falls within a range of other numbers? The fee schedule will be within the same spreadsheet, if that matters.

Ideally, I think they should be separate files, but this will be used in various locations as different realtors take it home or use it on their laptops.

View 9 Replies View Related

Excel 2010 :: Display Cell Ranges From Multiple Locations Based On 2 Cell Values?

Jun 4, 2013

I need to display a set of cells based on the value of two drop down cells i have. As I am not very good at english and worse at explinations, I'll try via screen shots...

I have two dropdowns (C4 and C6) that will indicate what table to use (Second sheet / screenshot). I want that "table" to display in the yellow box on the first page. To complicate matters, some options do not have a CLA option - those starting with X. As there are 24 different outcomes and each is 3x9 if/then statements just dont seem to cut it.

P.S. I have excel 2010 and windows 7

View 1 Replies View Related

Retrieving Cell Values Based On User Defined Number Range?

Mar 31, 2014

So I have 2 sheets from a much larger worksheet where I wish for the first sheet to extract a row of values, one at a time from the second sheet using a range of numbers I enter as reference for where to look for the data. Sheet 1 can be thought of as a summary page and Sheet 2 is where data is stored.

I need to first check if any data under Sheet 2 column B fall within a specified range of numbers and if any of those numbers are found I want it to grab the largest and latest number from that range and pull all the data from certain columns in that same row and place it into Sheet 1, one column value at a time.

Sheet 1 A1 = A range of numbers as text. 10-15, 16-20 etc Only one range is entered. This also tells me what results I'm looking at.
Sheet 1 B4:B14 = Destination cells for the individual data I'm wanting to pull from Sheet 2 columns H:P. B4 wants H, B5 wants I, B6 wants J etc

Sheet 2 column A = A3:A102 are numbered 1:100.
Sheet 2 column B = A series of numbers anywhere from 10-70. Always in sequence and they can repeat. 10,10,11,12,13,14,15,15,15,16 etc. Ranges from B3:B102. Only one number per cell.
Sheet 2 columns H:P = Data in H3:P102 I want to extract to Sheet 1 B4:B14.

Now lets say I want a formula for Sheet 1 B4 which wants a value in Sheet 2 H. If Sheet 1 A1 = 10-15, I want to check whether Sheet 2 column B has any values equaling those and then tell me which row that last number appeared in.
Example: Sheet 2 B4=14, Sheet 2 B5=14, Sheet 2 B6=16. Use B5. (B6 is outside range and B4 isn't the last time the 14 appears.)

Then, knowing B5 is the value I want, find which row it is in (row 5 in this example) or use the number in A5 (3) and then find my way to column H (H5) where the value I want to pull is.

Example 2: Sheet 2 B4=14, Sheet 2 B5=14, Sheet 2 B6=16. Use B5.
Sheet 2 H4=10, Sheet 2 H5=32, Sheet 2 H6=42. Place "32" from H5 into Sheet 1 B4.

I'd like to also have some error control so I'm not trying to pull data from blank cells if it's relevant. Maybe check if Sheet 2 X3=0 and if it is, do nothing as no data appears if the cell is 0.

I have put a lot of time into trying to solve this myself but I feel way out of my depth. I've tried going step by step but I can't seem to figure out which functions are relevant and also things like how to return the range that the A1 values appear in or if using MAX, not having it return values outside of A1's range also.

View 7 Replies View Related

Copy And Paste Range Of Cells Based On Number Of Cell Values In Column A

Mar 17, 2014

Please see attached sample worksheet. Column A will be generated by the user manually.

I'm looking for a way in VBA to have A1:D20 in Sheet2 copied and pasted in the "Bank Reconciliation" Sheet based on how many "Markets" there are in Column A. Then, once that's complete to have A22:D30 (the smaller box in Sheet2) copied and pasted directly below those results.

I have what the macro would hopefully generate to the right in "Bank Reconciliation" (B6:E54) as an example. So if there's a market in A1, copy and paste the box to B6. If there's a market in A2, copy and paste the box directly below the first (B26) etc. etc. until it's done, then paste the smaller box directly below whatever the macro generates.

Book2.xlsx‎

View 3 Replies View Related

Want To Display The Cell Next To A Max/large Number.

Sep 22, 2009

I'm working on a spread sheet to identify the to ten numbers from a list. I can find thes numbers and use ( =MAX('MHF2'!B:B) )for the function to do so. I'd like to dispaly the data in the cell directly to the left of this number... How do I do this?

11302
21000
3484
4440
5428
6419
7367
8333
9315
10258...........

View 2 Replies View Related

Display Value (Highest Number) From A Cell

Jan 28, 2013

I have a sheet, along the top is the Months of the year, to the side I have a list of products. At the bottom of each month in a cell I want to display the name of the product that has sold the most for that moth, is this possible:

I can display the highest number i.e Highest item sold in January was 108, but I want it to write the product name.

View 3 Replies View Related

Need Cell To Display Set Minimum Number

May 24, 2014

I'm trying to analyze the pricing we get from our shipping courier. Although the courier gives us incentive discounts, they also have a minimum charge that supersedes the discount. In other words, suppose the "Minimum charge" is set at $6.24. If the published "list rate" on a package is $10 but we get a 50% discount on all shipments, instead of paying $5, we pay $6.24. Basically, between the post-discount amount and the "minimum charge" we pay whichever is greater/higher.

Now, to the Excel part: I have cells with simple formulas applying our % discount to our carrier's published list rates to calculate the resulting price (i.e, where cell A1 contains published list shipping rate and cell B1 is our discount %, so in cell C1, I have a formula: =A1*B1). I would like know how, if the result of the formula in cell C1 is less than $6.24, that the cell could display $6.24 rather than the actual result?

View 2 Replies View Related

Enter Number Into Cell Based On Multiple Of Number In Another Cell

Jul 18, 2013

I have numbers in b2 to b5 say
10
22
35
50

I have numbers in c2 to c5 say
1000
1580
3000
45000

I have numbers in cells d1 to kq1 (1 to 300) d1=1, e1=2, f1=3 and so on

What I want to do is:

In D2 through to kq2 it puts the number in to the cell that correspnds to a multiple of the number in b2.
That would put 1000 in cells m2,w2,ag2,aq2, ba2 and so on
In D3 through to kg3 it it puts the number in to the cell that corresponds to a multiple of the number in b3
that would put 1580 in cells y3,au3,bq3,cm3,di3 and so on

View 2 Replies View Related

Get Cell To Display As 1 (count) If Number In Column Is Above 90

Jul 31, 2014

I have one collum with number ranging from 0-1000 in. I have another collum titled "above 90".

How do I get the "above 90" collum to display as 1 if the number in the other collum is above 90?

I understand it must be some kind of "COUNTIF" function but not sure...

View 7 Replies View Related

Cell Number Format And Display - 2003

Dec 2, 2009

I enter in numbers, eg: 1, 2, 10, 24, 100, 1000 in a consecqutive cell range
They display as: 0.01, 0.02, 0.1, 0.24, 1, 10. Default cell format is general. If I change cell format to Number (with default display of 2 decimal points) it displays: 0.01, 0.02, 0.10, 0.24, 1.00, 10.00. If I also specify no decimal points, it displays: 0,0,0,0,1,10

The only way I can get the numbers I enter to display (and store) as 1,2,10,24, 100, 1000 is to change cell format to text and THEN retype th numbers into the cells. But, then it creates the green error comment in top left of each cell.

View 3 Replies View Related

Format Cell To Display Number With X Added 0s

Oct 23, 2012

Is it possible to format a cell so that it displays 6x 0's after the number?

I.e. If cell A1 contains the number 14, id like it to display 14000000

However, that 14 million is a monetary value, so I would want it to also display $ , & .

If I change the number the following week to 21, it automatically becomes $21,000,000.00

Ive tried formatting it as a custom, but that only seems to had 6x 0's before the number

View 2 Replies View Related

VBA To Display Value In A Cell Based On Another Cell Value

Jun 4, 2014

I have several columns (d,o,z,ak,av,bg) where I enter material numbers - there is approximately 180 different material #s. Columns (f,q,ab,am,ax,bi) are empty and designated for text/comments entry. Some material numbers need to have specific comment displayed - there is approximately 25 material numbers and each one has different comment attached to it. I need to display these comments automatically without user interaction. Material numbers change weekly and are in rows 5:130 in their respective columns (d5:d130,o5:o130,..etc)

This would be easily achieved with formulas in columns (f,q,ab,am,ax,bi) but I can't use formulas as these may be overwritten. Any thoughts of how to do it with VBA?

View 1 Replies View Related

Display An Image Based On A Cell's Value?

Jan 12, 2010

I have two bitmap images, and I would like to show only one image at a time, based on the content of another cell's pull-down list. If the user selects "AIR", then display the AIR image. If the user selects "SERVO", then display the SERVO image.

View 2 Replies View Related

Display Userform Based On Cell Value

Sep 12, 2012

Depending on the result of a formula in R67, one of three things will occur. If the result is a 1, UserForm1 is displayed. If the result is a 2, UserForm2 is displayed. If it is nothing, nothing happens. Ok, I can do that.

However, with the code below, whenever I select any cell, and there is a 1 or a 2 in R67, the userform pops up. I only want it to pop up if I change a value in C6 which in turn changes the result of the formula in R67.

Code:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("R67").Value = 1 Then
Run "UserForm1"
End If
If Range("R67").Value = 2 Then
Run "Userform2"

[Code] .......

I've tried setting a monitored range. I've tried the code below in one form or another and it didn't work.

Code:
If Not Intersect(Target, Range("C6, R67")) Is Nothing Then Macro

View 7 Replies View Related

Display Different Message Box Based On Cell Value?

Jun 24, 2014

I have a workbook that can open a URL into IE when a project number is entered in an input box.

What I would like to happen is that if the project number entered does not have a URL against it and the value is #N/A, then the message box will display "Project does not exist". However if the number does exist, I want a different message box to be displayed which is a yes/no box.

The code below is what I have tried which works fine if the cell value is #N/A but when it is not it throws an Run-Time error 13: Type mismatch

Code:
Sub SearchPidsMessageBox()
Dim Answer As String
Dim MyNote As String

[Code]....

View 2 Replies View Related

IF Funcation: Another Cell To Display An Age Range

Sep 22, 2009

I have a field called “Age”. What I want to do is; If I type in the person’s age say “26” then I want another cell to display an age range (i need to entered the age ranges i want eg “16-20, 21-29, 30-39” etc. So if I type in 26 in the first filed I want to second cell to display “20-29”.

View 3 Replies View Related

How To Display The Value From A Range In A Separate Cell

Jun 8, 2014

Want to be able to select a month (Jan - Dec) set in a range A1:L1. When the selection is made, I want the selected cell to be displayed in a separate location e.g. cell C4, but if the selection is outside the range A1:L1 then C4 to remain blank.

View 5 Replies View Related

Display Which Cell Is Empty In Range

Feb 12, 2014

In cell D1 of sheet 2, I want the cell reference to be displayed of the next available cell in column A of sheet1

for example if cells A1:A238 in sheet1 are populated the cell D1 of sheet2 will display A239

View 5 Replies View Related

Display Last Cell In Range With Blanks

Sep 26, 2006

How can I get the last cell with data, show in other cell? For example last cell populated info in total cell.

Date Cases Within 30 Days
01-Sep-0622.83
02-Sep-0622.78
03-Sep-06
04-Sep-0622.86
05-Sep-0622.82
06-Sep-06
07-Sep-06

Total22.82

View 3 Replies View Related

Display Range List In Cell

Feb 20, 2008

How could I create a menu that displays cells from another sheet when the appropriate menu value is selected?

For example, the menu (on sheet 3) would have:

Week 1
Week 2
Week 3

If I select Week 1, I want to display cells B4:B10 from sheet 2 underneath the menu. If I select Week 2, I want it to display cells B19:B25 from sheet 2 under the menu.

View 4 Replies View Related

Display Or Hide Shapes Based On Cell Value Without VBA?

Aug 8, 2012

I have a map of the US composed of 50 shapes (one for each state). I need each shape to appear or disappear based on a value in a corresponding cell. I can't use VBA for this as it needs to function for users in a high-security Excel 2003 which doesn't allow macros.

View 1 Replies View Related

Display Image Based On Contents Of Cell?

Feb 25, 2014

I have found Displaying an image based on text contained within a cell. which appears to be a very similar question, but no steps to follow.

Basically I have a folder with around 300 images in it, each is called ProductId number.jpg
eg Z99S1234567.jpg

In my sheet I am using the same ProductId number and would like to display the product image on the sheet. I have A1:D19 as spare space Lookig at the info I have found the image will have to go into a cell, so can I break all the rules and merge cells to fit the image in, or do I need to make a single cell big enough or can I use VBA to import the image somehow to a specific place on the sheet.

There will only ever be one looked up image on the screen at a time.

View 1 Replies View Related

Display Image Based On Cell Content

Aug 17, 2007

I'm trying to display a different image based on the contents of a cell. For example if cell A1 = "Gerrard" I would then like to display a picture of Steven Gerarrd. Is this possible? If so can anyone give me a steer in how I might acheive this.

View 3 Replies View Related

Display Picture Based On Text In Cell

Feb 28, 2008

Is It Possible To Embed Pictures So That When I Do Lookup A Code It Then Shows Me The Picture Of What It Is Im Looking For. Ie If I Was To Type In Kettle It Would Show Me A Picture Of A Kettle In The Next Cell?

View 3 Replies View Related

Display Chosen Number If Cell Text Begins With Specific Letter?

Apr 3, 2014

I'm trying to write an IF formula that will return a number if the word in the adjacent cell begins with a specific letter. Here's what I want to show:

City
01

Express
02

Overnight
03

So "C" would return 01, "E" would return 02 and "O" would return 03.

View 3 Replies View Related







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