3 Cells Must Be Answered Before 4th Cell Populates?

Apr 10, 2013

I have a spreadsheet where my agents need to answer B3, B4 and B5 before B12 provides the answer. Currently, B12's formula works but it doesn't require the 3 other cells to be completed - it defaults to "No" until all 3 are complete and then changes to "yes" if the 3 cells match the formula I have set up already. Is there a way to prevent B12 from showing "No" until the 3 cells are filled out? I would prefer it stay blank until the cells are complete. I have tried the ISBLANK route but I'm not sure it is the right way because both B3 and B5 are set up with Data Validation lists so I dont think its picking those up as truly being blank...(maybe?).

View 9 Replies


ADVERTISEMENT

Populates The Cell

Mar 2, 2010

If I insert the letter W into cell A1 it populates cell A3 with whatever figure is in A2

View 9 Replies View Related

If The Sum Of A Cell Is A Certain Text Then A Dollar Amount Populates Another Cell

Sep 5, 2009

Attached is an example. Office 2007 & 97 versions attached. If a drop down menu on one sheet selects a certain word, then on another sheet based on that selection a dollar amount is entered. I am guessing this would involve some if commands, I am really weak on making those.

View 2 Replies View Related

Create Drop List That Populates Cell With Some Other Data?

Feb 4, 2014

I am trying to create a drop down list so that when the user choose Option A, Outcome A populates the cell.

So for example, I am looking to show a list of all Grades within the company, when the user selects a grade, the salary is populated into the cell.

View 7 Replies View Related

Format A Cell So That It Auto-populates With Information From Hyperlink

Sep 3, 2013

I am trying to format a cell so that it auto populates with information from a hyperlink. An example is that I want cell E2 to equal the cell B9 from a hyperlink. To make things more complicated I want all of column E to equal cell B9 but from each respective hyperlink.

View 2 Replies View Related

Delay Macro (Put In A Statement Within A Macro That Populates Cells With The Values)

Jan 11, 2010

Put in a statement within a Macro that populates cells with the values that I want it to but instead of populating all at the same time, is it possible for the values to be delayed.

I have designed a mock spreadsheet (attached) it has two columns 'Before' and 'After'

After = Before values (in this mock)

When you press the button, the values are populated straight into the 'After column' can we add the delay between the values? So that the values dont come up straight away.

View 3 Replies View Related

Input Box To Create And Input Info Into A Formula Which Then Populates A Cell With A Value

Jul 24, 2014

I am trying to create a macro which gives me an input box. I need to enter 2 numbers into the input box. It would be as follows:

Input Box Msg 1 - "What is your labor cost?" (NUM1)
Input Box Msg 2 - "What is your productivity rate?" (NUM2)

Then I need the macro to take this info and enter it into a formula which changes according to the row which you are on. (I need the macro to work based on which ever cell I currently have selected). The formula would be this if I currently had a cell on row 10 selected:

=(NUM1*(NUM2*$H10))/$H10

So, if I currently had cell L10 selected, and I ran the macro and put 100 in for "NUM1" and 10 for "NUM2" and my sheet had 20 in cell H10, then the macro would enter the number 1,000 into cell L10. If I had L500 selected, then the macro would enter the final number into cell L500 based on what value H500 contained.

View 9 Replies View Related

Dual Column Dropdown Where Only One Column Populates The Cell

Apr 19, 2012

I've been trying to solve with a 2 column drop down. What I am hoping to do is use two columns to aid the user in selecting the correct entry. So the first column will be a number and the second column would contain what the number means

If:
Col1 | Col2
001 | Horse
002 | Cow
003 | Dog

Both columns show when the list is selected, but when the user selects 003 | Dog, the cell would be populated with only the 003.

View 1 Replies View Related

Userform That Populates According To Combobox Value

Mar 14, 2014

I have a userform that I wish to be a front page for a work sheet containing personal staff information. I would like it to self populate according to a selection from a combo box (Surname). So far I am using the code below however where this code encounters those with the same surname it only displays the first row it comes across. Each row does have a staff ID number that is unique but I cannot search by this on its own as it would not be user friendly.

VB:
Private Sub ComboBox1_Change()
Dim r As Range
Set r = Sheet2.Range("A:A").Find(What:=ComboBox1.Text, lookat:=xlWhole, MatchCase:=False)
If Not r Is Nothing Then

[Code] .....

View 1 Replies View Related

Formula =E4+10 Where The Value In E4 Is A Date And Populates

Mar 25, 2009

I have a simple formula =E4+10 where the value in E4 is a date and populates F4 with 10 days after....

If the value in E is blank then F will say 10-jan i need this to be blank without using conditional formatting.

Ive used 3 conditional formatting conditions already.

View 9 Replies View Related

Conditional Formatting: Box That If The Cell Populates "Completed" Or "X Required", Then Highlight As Green

May 12, 2009

I have the folowing criteria :

1) If “Completed" , then highlight as green
2) If “Pending” , then highlight as red
3) If “In Progress” , then highlight as blue
4) If “X Required” , then highlight as green

I need to include in the third conditional formatting box that if the cell populates "Completed" or "X Required", then highlight as green. Is there a formula I can use in the conditional formatting box ? I am using Excel 2000.

View 2 Replies View Related

Creating Form That Populates With Data In Row

Mar 10, 2013

I've got a spreadsheet that contains company names and columns with specific information about each company. There is a different company in each row. I have a form (text bow) at the top of the spreadsheet that I would like to auto-populate with the row's information when the user clicks on a row. How do I go about doing this?

View 12 Replies View Related

Dropdown List That Auto Populates 2 Fields?

May 12, 2014

I am currently building a sheet that requires a drop down box that will auto-populate two separate fields. I have tried to the point of being suicidal to make this work but to no avail.

A detailed explanation:

The worksheet containing the drop down list and fields that need to auto-populate.
sheet example.png

The raw data, located on a separate tab in the same workbook. (Note: there are over 1500 rows of data)
sheet example 2.png

The drop down box will be in the "Description" column and will contain a list of services my company provides. Once selected it will auto-populate the "Rate" column and the "Item ID" column. The raw data that the list is pulling from is located on a separate tab.

I can make the list just fine, it's easy enough to just go to the Data Validation feature and point to where you want the list and where you want the data to come from, but getting the list to pull the data from different columns and go into the columns on the work sheet is apparently beyond my knowledge of excel. I figured it would just be a simple formula setup through the VLOOKUP formula wizard but I've tried it at least 20 different ways, all of which fail. I've tried HLOOKUP too but it also failed.

View 8 Replies View Related

How To Create A Calendar Which Populates By List Of Dates

Apr 1, 2009

I have been asked to create a calendar which will display, on the applicable date of expiry, a contract name. Basically so someone can go and see what contracts are due to expire. And then if a new contract comes up it will automatically be added.

I have a list of Contract names in one column followed by the expiry date.

I have looked around and there are some things which could help but they are seriously complicated and I can't work out how to apply it to my situation.

View 11 Replies View Related

Master Worksheet Populates Existing Worksheets

Mar 7, 2014

What I need:

-Master worksheet copy/populate child worksheets at the press of a button or automatically if possible.
-If copy pasting, it needs to overwrite the original data and not just duplicate it underneath in the child sheets.
-I tried using the code from "[URL] ......" but could not tweak it quite how I wanted.
-Any unique values without a child sheet, just ignore and leave in the master sheet or ideally add them into their own child sheet

I have multiple other macros going. Some details about my sheet:

-My table headers and filters come down to "A13:R"
-All my information starts on "A14:R" which is what I want sorted. All of my worksheets have the same heads/locations.
-The column "I" is where I want to take my info for sorting from. For example "I14" = grapes, "I15" = apple, "I16" = grapes. etc. So i would like all the apple rows to automatically go to the "apple" worksheet and the grape rows to the "Grape" worksheet.

View 9 Replies View Related

Selection Of Dropdown Populates Remaining Columns

Feb 27, 2007

I have an excel spreadsheet that has several fields which should be connected. If one of the fields is selected via a drop down, then several other columns should autopopulate with the data in the list set up on another page. What Im trying to figure out is:

1) How do I make it so it does this with every row on the spreadsheet? I've seen code in the formula bar so that it works for one row, but I need it to work regardless of how many rows are added to the sheet...

and

2) Is there VBA code so that if someone selects A value from a drop down list in, say, column F, that data corresponding to that selection is placed in other columns in the sheet?

View 2 Replies View Related

Drop Down List: Looks At This Range And Then Populates This Information Into Columns

Oct 26, 2009

I have a 5 row list in WA2. Each row holds its data across 3 columns i.e A1description, B1 product code, C1 unit cost. In WA1 I want to have a drop down table in cell B3 that looks at this range and then populates this information into B3, C3 and C4. I have tried data validation but it keeps telling me that it can only look at a single row or single column

View 2 Replies View Related

How To Match A Cell Data With A Range Of Cells And Return Cell Reference In Another Cell

Dec 12, 2012

i want to match a cell data with a range of cells and if matches return the cell reference in another cell

View 3 Replies View Related

Macro To Combine Cells In A Row To 1 Cell While Skipping Blank Cells

Jul 2, 2014

I need to combined all non blank cells in a given row into 1 cell. But within each row i have 5 phases that the values fall into, which is denoted by the 1st charter 1, 2, 3, 4, or 5. for example, in a given row i have 1-a, 1-c, 2-d, and 1-f and these values occurs in non consecutive columns starting from G to ALR. I need a macro that sorts these values in one of the 5 phases. So in another sheet the macro would combined [1-a 1-c 1-f] in Phase 1 and [2-d] in phase 2. and if there are other phases it would put them in the appropriate cell.

See attached workbook : Work Order Summary Sheet.xlsx‎

View 3 Replies View Related

Macro To Combine Cells In Row To 1 Cell While Skipping Blank Cells

Jul 17, 2014

However, in addition to what the macro already does, it is possible to add another work sheet in the same work book that outputs the values in separate cells? It also has to output the data in order: for example, in the first work sheet the data is inputted at random and has spaces but the macro will have to remove all the blank cells and output them in order based on the first value in the test string, 1, 2, 3, 4, and then 5;

input:

blank 3-x Blank 1-y blank 2-z 1-k

output:

1-k 1-x 2-z 3-y

View 4 Replies View Related

Formatting Cells Dependent On Other Cells Relation To That Cell.

Jan 4, 2010

i have just read the thread started by scabertrain regarding "if" conditonal formating, but mines slightly different and i cant make head nor tale of the fomula shown.

So... Monthly budgeting... using a projected outgoing (A1) and an actual outgoing (A2) i want the colour "A2" to change depending on whether i have spent over the budgeted amount, green being underspent, orange for on target and red for over spending....

Example:

I predicted (A1) that i was going to spend £50 on a night out, but my actual spending (A2) was £100, i would like A2 to turn to red.

View 3 Replies View Related

Populate A Cell Based On Conditions Of Other Cells W/out Putting A Formula In The Cell

Oct 10, 2009

Is there a way to make a cell populate certain text based on conditions of other cells without putting the formula in the cell you want to populate. So that someone could type other text into the cell if the conditions were not met?

View 14 Replies View Related

Excel 2010 :: Inserting Image To Cell / Merged Cells As Background Fixed To Cell Size?

Jan 18, 2014

Excel 2010. I need to place picture into one cell or one big merged cell, as a background fill. picture must resize to size of cell. must be fixed in, not in front. i still need write into that cell, so it needs to be really background.

View 2 Replies View Related

Colour Cell Based On Few Conditions / Cell Values Of Other Cells In Same Row?

Jun 28, 2014

In the xls for each step I have 2 raws-planned and actual. Step planned duration is populated manually over the weeks.Before that row we have another reflecting the actual step status per week

I would like to find a way how cell reflecting the actual status of a step can be automatically populated (coulored) based on the colour/value of activities that are planned for that week and for that step.Activities are listed below the step and again have planned and actual row.

The rule should be : if for a week we have several activities all of them should be finished in order to have step stataus auto populated as green. If a single activity planned for that week is not done-then weekly step status should be red.

The activities for each step are grouped below the step. It seems that one of the difficult part in that request would be how formula will understand where starts and finishes the activities that belong to one step. To get that happen I placed a column showing step and another column where we activity.

View 9 Replies View Related

Copy Cell Values In One Cell Based On Value Of Adjacent Cells

Feb 20, 2014

What I want to achieve: those cells have number 1 ( in column E) , adjacent cell values ( In Column D) are copied to G12 in the following format:: Mark,Lark ( i.e. cell value , cell value, etc)

is it possible ( with a command button) Sample attached

View 4 Replies View Related

How To Automatically Update Cell Format In Cells That Reference Another Cell

Feb 22, 2012

Cell C3 has "Joe"

Cell X44 is a VLOOKUP that retrieves "Joe"

Let's say Joe goes on vacation. The workbook user goes in and puts a blue fill in C3. Cell X44 would also need to change automatically.

What's needed to make this happen?

View 1 Replies View Related

Find Cell, Copy Adjacent Cell Or Cells To Clipboard

Jun 14, 2007

Here’s what I want to do in VBA

1. Put a value in cell H1 (text and numbers)

2. Find a matching value in column A (starting in row 2), error message if the is not a match.

3. Copy the adjacent cell column B (rows vary) to the clip board. It would copy until it found the first blank row.

I have attached a scaled down version of the spreadsheet, the one I use has 100's of codes. I know some VBA but not much. I searched the forum but could not find anything.

View 4 Replies View Related

Refernceing Cells: Formula That Looks At A Cell On A Front Sheet, And Then Returns The Contents Of That Cell As The Result If It Meets The Criteria

Apr 5, 2009

I have a formula that looks at a cell on a front sheet, and then returns the contents of that cell as the result if it meets the criteria. So for example this formula would be in Cell A1 on Sheet2 IF(SHEET1!A1,"New",Sheet1!A1,"-")

This formula is always in the same cell (different sheet) as the cell that it is looking at, down 1500 rows. Instead of having the formula named for each cell is there anyway to ask excel to 'look at this cell but on this other sheet'.
e.g IF(Sheet1!"This Cell" etc). That way no matter what cell you put the formula in it is always referencing the correct cell for the formula?

View 2 Replies View Related

If Cell Text Equals Cell Text In A Range Of Cells Display Value From Range Of Cells

Oct 4, 2012

I have the following formula that is supposed to grab a value from C2 and check for that value in a range of cells and if it matches it is supposed to display the corresponding value in another range of cells. What am I missing??

=IF(C2='Google Doc'!$B1122:$B1266,"'Google Doc!K1122:K1266'","Not OK")

View 9 Replies View Related

Formula That Adds Two Separate Cells If Third Cell Has Certain Value Into Another Cell

Aug 5, 2014

I'm working on a spreadsheet that includes items I sell as well as the packaging it goes in.

The formula I'm looking for basically will tell a cell that if one cell (# of box) is equal a certain # it will add two separate cells by the weight of the box.

I have cells for each of the following: Weight in lb and weight in oz of the item (no box), a cell which holds the number of the box (ranging from 1-15) and two cells with weight in lb and weight in oz which would be the total weight of the item + box.

So, for example, if weight of item equals 1 and box cell equals 2 then it will put the weight of item + weight of box into a third cell.

Here's a picture of my current spreadsheet : [URL] .....

Basically, I would like to do something such as if P3 = 5, then Q3 will equal N3 + U6 and R3 will equal O3 + V6.

View 12 Replies View Related







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