Find Max Value In A Row When Another Row Is Populated

Apr 2, 2014

How to to find a formula which will pick the highest number in a row when another row is populated. For example, in the table below row 1 has some numbers, with rows 2-5 being populated with a Y. I'd like a formula to look across the rows individually and pick the highest number in row 1 (it should equal the numbers shown in column F.) when there is a Y in row 2. Then the same again for 3.

___A____B____C____D____E____F
1__30___40___20___35___45
2__Y____Y____Y____Y_________=40
3__Y____Y____Y____Y____Y____=45
4____________Y______________=20
5__Y______________Y_________=35

View 4 Replies


ADVERTISEMENT

Find Max Value In Row When Another Row Is Populated With Different Entries?

Apr 2, 2014

Im trying to create a formula that looks along a row and then where theres an entry it looks at the top row and picks the highest number. I've attached a spreadsheet showing a shrunken version of the excel file, the answer to the formulas are in column F for each row.

View 3 Replies View Related

Formula To Find Last Populated Cell In Row

May 30, 2007

i need to find the last populated cell in the row say I9:CN9 and return the description for that column the resides in I5:CN5 and then fill the formula down for about 500 rows, just not sure even where to begin, do i need a custom formula in VBA? as i can't seem to find a combination that works built-in...

View 5 Replies View Related

Find Last Populated Cell And Autofill Column - VBA

Jul 3, 2012

DATA
DATE
PRICE

DATA
20120621
118.1000

[Code] .......

I have 3 columns (data, date & price). What I would like to do is find the last populated cell in 'date' column and autofill it based on column 'data'. The tricky thing is that the date form is text and while autofilling manually it changes.

View 6 Replies View Related

How To Find Last Populated Cell In A Row In Multiple Worksheets

Jan 12, 2013

I have a spreadsheet with many worksheets, everyone except the first representing a year. Every worksheet has twelve tables (the months), the first row of each table has the days of the month and the second row has the data that I put on a daily basis. The first worksheet calculates statistics using the data from the other worksheets.

I am looking for a formula that returns the date by finding the last populated cell and looking right above it, so I can use this info in the first worksheet to show when the spreadsheet was last updated.

View 2 Replies View Related

VBA Find First Populated Column In A Row, Starting At Column X

Jan 29, 2010

How would I write something that finds the first populated column in a row, starting at column C and moving to the right?

View 9 Replies View Related

Get Last Populated Row In A Range

Dec 7, 2011

My VBA is very rusty, and I can't get the following code to work. I need to workout the number of rows that contain data in a range so that I can eventually write a formula in a adjacent cell, but I keep getting errors (Type mismatch or Subscript out of range) at the first step!

Code:

Sub create_product_column()

Dim num_rows As Range ' The number of rows in the datarange
Dim my_workbook As workbook ' The name of this workbook
Dim my_worksheet As worksheet ' The name of the worksheet to work on

[Code]....

View 4 Replies View Related

Count Non-Populated Cells

Jul 23, 2014

Is it possible to count cells that all have a formula in them, but only count the cells that return a displayed result?

View 5 Replies View Related

Displaying A Value When Other Cells Are Populated

Jul 27, 2014

I'm putting the finishing touches to a grade sheet for the new academic year. I have one column that calculates a grade using the OFFSET function from a given number of points. However, I only want this cell to show a grade when the nine individual unit columns have been populated. If fewer than 9 columns have been populated, the cell in question needs to be blank. I've tried using COUNTA to count the number of populated cells and then linking that cell to an =IF(Q5=9... formula, but haven't been able to crack it yet. I'm probably missing something obvious...

View 8 Replies View Related

Hide Value When Cell Is Not Yet Populated?

Feb 19, 2013

how to hide a value on a cell when another cell is not yet populated?

like for example:

A1 is Blank A2 has a formula of workday(A1,2) a date will appear on the A2 cell and I want not to show or be hidden the date in A2 until A1 is populated

View 3 Replies View Related

Spreadsheets Populated By Scanners

Jun 3, 2013

I am trialing a WASP scanner that populates a excel worksheet. I am reading Item number (P12345) quantity (Q123) etc.

Currently all readings are in column A

A1 is p12345
A2 is q123
A3 is p123456
A4 is q123

I need to have all item numbers in one column and all qtys in another column and any other data I read in separate columns

the set up or the extraction from column into columns for item, qty, etc

View 2 Replies View Related

Populated In Combobox UserForm

Mar 22, 2009

I have more problem when work with three combobox, will you find me the code to solve this problem.

View 2 Replies View Related

Finding Out If A Cell Is Populated

Jun 4, 2009

I am now looking for a command that will return if a cell is populated. I.e. I need something that will find out which cell is the last one populated in a column (populated = contains data) and then will move 2 cells down, and then will enter some data into the following cells.

View 4 Replies View Related

Totalling Columns When Both Are Populated

Dec 4, 2006

I want to total column A & total column C but only if there is an amount in both cells on the same row

Can I do this with an array?

Do the columns have to be adjacent? I could make them if necessary.

Data
A C
11 12
21 0
0 17
15 15
11 9

in this example we exclude rows 2 & 3 from the total because one cell contains zero or is blank.

Total Column A = 37 (11+15+11)
Total Column C = 36 (12+15+9)

View 11 Replies View Related

Get Cell To Become Hyperlink After It Has Been Populated?

Jul 12, 2012

I am trying to get a cell to become a hyperlink after it has been populated.

For Example:

If cell H42 of Sheet 1 = [ X ] Then create a hyperlink to cell B2 of sheet 2.

I have been trying quite a few different things the latest I have written is the following:

Sub Macro1()
Dim cell As Object
Set cell = [ X ]
If H42 = cell Then
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
"Sheet2!B2", TextToDisplay:="[ X ]"
End If
End Sub

View 2 Replies View Related

Copy Last Populated Cell

Jan 23, 2013

I am trying to write some code to choose the last "comments" entered in column 13 and then copy the data to B17 on the specified sheet below.

I get an Excel Error Excel cannot complete this task with available resources. Choose less data or close other application THEN a VB error Method'open' of object 'Workbooks' failed

Code:
Dim MyMgr As String
Dim whichsheet as string

MyMgr = Range("D10")
whichsheet = Range("D11").Value

If MyMgr = "Manager1" Then
Set myBook = Workbooks.Open("destination", Password:="manager1") 'Home

[Code] ........

View 3 Replies View Related

How To Catch Last Populated Cell In A Row

Feb 12, 2013

I have to create a formula to fine difference between 2 numbers.

There are columns A to Z.

Values will be populated in A1 to Z1. Sometimes the value will stop in between itself. For example H1.

So, I need a formula to catch the last populated cell (H1 in our case) and then find the difference between the value in its previous column.

H1-G1 should be the result I should get.

View 6 Replies View Related

How Many Cells The Data Has Been Populated With

Mar 3, 2008

I want to fill down and across a formula but the ranges wary depending on how many cells the data has been populated with.

At the moment i'm using the autofill function but can i use a do until function:

Range("F4").Select
Selection.AutoFill Destination:=Range("F4:EK4"), Type:=xlFillDefault
Range("F4:EK4").Select
Selection.AutoFill Destination:=Range("F4:EK1838"), Type:=xlFillDefault

View 9 Replies View Related

How To Get The Last Populated Row/cell In A Column

Sep 30, 2008

I'd like to get a reference to the last row or cell in a column of data.

View 9 Replies View Related

Each ListBox Is Populated Via .AddItem

Dec 15, 2009

I have a userform (seen below) in which the user selects any number of ZIP Codes (right - ListBox2) after selecting a county/location (left - ListBox1.)

My dilema is that I need to somehow record the selections for EACH county/location, while making sure that when saving the selected ZIP's to the "Area Associations" sheet, I don't create duplicates. Of course any ZIP deselected needs to not be recorded to the sheet.

The "Area Associations" sheet is set up as follows:
[Any given row after row 1]
Column A = Area (Area is selected prior to the userform being displayed)
Column B - ??? = the selected ZIP's

The selected ZIP's do NOT have to be in any specific order, because I have a routine to search through the row looking for any instance of any particular ZIP Code.

FYI - Each ListBox is populated via .AddItem

View 9 Replies View Related

INDEX Returns 0 When Cell Not Populated

Mar 28, 2014

See attached formula:

"=INDEX(DATABASE.xls.xlsx!$AT$5:$AT$2001,MATCH(AR10,DATABASE.xls.xlsx!$O$5:$O$2001,0))"

Cell AR10 is my target cell and then there are 15 other cells that populate when the correct information is put into cell AR10, but if one of the other cells does not have any information in it, it returns a "0" (zero). I am trying to get the cell to show blank as when I print I don't want a "0" (zero) in every cell that has not got any information.

2 x cells are showing telephone numbers, 1 x landline and 1 x mobile - sometimes we don't have a landline number, so I want the cell to show blank not "0" (zero)

The cell format is set to "text", but I have tried setting it to "general", "number" and finally settled on "text", but all return "0" (zero) if we don't have a number for them.

View 6 Replies View Related

Formula To Look At Previous And Following Days To See If They Are Populated

May 30, 2014

I have a sheet that shows employee absences, I require a formula that will look to see if a friday and a monday are populated and auto-populate the saturday and sunday to match the run, if the only the monday is populated then the saturday and sunday need to stay blank, if only the friday is populated then I also need the saturday and sunday to stay blank.

I have attached a sheet with the current display and the desired outcome.

fill test.xlsx‎

View 14 Replies View Related

Make Cells Invisible Until They Are Populated?

Jun 5, 2014

I'm trying to create an accounting document, but stuck in couple fields

1) Make balance appear in column E5 only if column C5 OR D5 is polulated, so goes for the rest of the cell in that colu

2) I like to have 2 digits after the decimal but (same as above) i want it to appear ONLY if there are any decimals to that number, all those 0 become confusing.

3) I need to make it so the last calculated cell on sheet Jan of column E gets transfered auto to sheet Feb D3 of F3 so the calculations could proceed to the next month

View 11 Replies View Related

Auto Insert A Row With Info Populated From The Row Above

Jan 14, 2010

to be able to do is have a stock control sheet that tells me how much of 1 item we have in stock which is easy, the hard part comes when this stock is sold as this stock can be sold to a number of different customers e.g.

We have 10,000 X Pens

Customer 1 buys 1,000
Customer 2 buys 6,000
Customer 3 buys 3,000

i need a way of saying that we have 10,000 pens but if we sold 1,000 then we can click a button (macro maybe) and that will automatically see that we have 10,000 for that line and we have only sold 1,000 so we need a line inserting saying that we have 9,000 remaing and so on.... The sheet needs to record who these goes to though, that the reason i was thinking of adding a row

If this doesnt make sense then i am happy to answer your questions?

i can upload an example excel sheet if required if someone can explain how i do this?

View 14 Replies View Related

Show Dropdown When Another Field Is Populated?

Jan 28, 2013

I have 2 related columns with one to many relationship, on a tab populated with some data. On another tab I'm referencing these 2 columns. When I populate one column I would like a drop down showing all the related data from the 2nd column of the first tab in the 2nd tab. I'm unable to do a named range as my first column has spaces in its name.

View 11 Replies View Related

Get Hyperlink To Take To The Last Populated Cell In Column?

Feb 9, 2013

I have attached a sample file. I would if possible like to have a hyperlink at the top of the sheet that when pressed would take you to the last populated cell in column G. I can do a normal hyperlinks but over time the hyperlink would take you to the wrong place as the sheet is filled in more and more. Is this possible?

I have tried to adapt various macros I have found on this forum but they on't seem to do want I ask of them I also seemed to have acquired an extra vba project (Ubitmenuo4) in the worksheet and can't get rid of it, so just ignore that

View 4 Replies View Related

Add Items To RowSource Populated ListBox

Oct 14, 2009

Why is it when i try adding items to my listbox it comes up with the error Permission Denied. Im using rowsource just to have a heading tho when i want to add items it come up with the error.

Note my headings are in "K2:M3"
Eg.
With Me.ListBox1

.ColumnHeads = True
.RowSource = "K3:M3"

End With

then i try adding an item with

me.listbox1.additem Test

i get the permission denied error.

View 4 Replies View Related

VLookup To Move Onto Next Populated Cell?

Apr 4, 2012

I have a list where the lines of data I need are not uniform in relation to the customer identifier, ideally I want to get the Lookup (or equivalent) to ignore the blank and move down the column to the next populated cell as below.

Customer identifierAddressCustomer identifier
Address1Vlookup?12Vlookup?Address 13Vlookup?2
Address 24Vlookup?3Address35Vlookup?6Vlookup?47Vlookup?
Address48Vlookup?59Vlookup?10Vlookup?Address 56Address 67
Address 78Address 89Address 910Address 10

View 1 Replies View Related

Finding Last Populated Column In Header

Oct 2, 2012

I have a worksheet where the first two cells in the header are blank but the third and last cell is not. I'm trying to find the code which would give me the last populated cell in the header.

View 2 Replies View Related

VBA Code To Validate Cell Is Populated?

Jun 25, 2013

If I have a cell "C8" default value is "choose" and it is a drop list of other values. I want to validate if "C8" is populated with a value other than "choose" that the user populates the SOME of other cells in the row like D8 or F8? I would like to alert something that the cell needs to be populated.

View 1 Replies View Related







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