Sequence Adding Based On Name?

Jul 1, 2014

I want the numbers to increase based on the labels from a list, such as the first john chosen will get a 1 on the first cell on sheet 2, if john is chosen again the 2nd john will get a 2 on the next cell on sheet 2 and so on for the other names.

I tried to use IF(COUNTIF(D:D,D2)=1,LARGE(IF(D:D=D2,E:E)+1),1) but it didn't work out.

View 3 Replies


ADVERTISEMENT

Delete Duplicates Or Adding Extra Cells To Keep The 24 Hour Time Sequence Intact?

Apr 26, 2014

i am trying to remove some duplicates in a sequence and add new cells for missing ones

View 9 Replies View Related

Sequence Number Based On Date?

Jul 25, 2006

I'm trying to set up an auto sequence number(col A) based on a date entry (col B) as in the example below. The sequence number should reset to 0001 each time the date in Col B changes.

Col A Col B
072306-0001 07/23/06
072306-0002 07/23/06
072306-0003 07/23/06
072406-0001 07/24/06

View 5 Replies View Related

Sequence Based On Column A Index

Sep 18, 2006

I am stuck on what should be a simple formula. I have a spreadsheet that is sorted by "target" number in column A, basically 1,2,3,4. I am trying to create a formula that will increase the number in column B by one based on column A. So when the value in column A changes column B will reset to 1. Also I need this sequence number to be preceded by zeros up to 0999. So 1 would be 0001 and 895 would be 0895.

View 2 Replies View Related

Creating Number Sequence Based On For Loop

Aug 1, 2014

I am trying to create a number counter which runs up to a value which is determined by a COUNTIF Statement in the spreadsheet. I can get the number counter to run to the given value. However, due do formatting reasons I do not want the counter to start in cell A1 but A3 instead.

Essentially my code looks like this:
...
ActiveSheet.Cells(3, 1).Select
Dim i As Integer
For i = 1 To Range("A1")
Cells(i, 1) = i
Next i
...

View 3 Replies View Related

Automaticly Populate Dates In Sequence Based Off Of One Cell

Jul 3, 2009

How do i get cells to automaticly populate dates in sequence based off of one cell. I.E C1= 4/Jul/09 I want A2-A7 to populate the dates in sequence Jul 4 - Jul 11. Is it a formate issue?

View 4 Replies View Related

Macro To Select Cells Based On Number Sequence

Feb 21, 2014

I have a sheet with hundreds of rows of customer information; including a 7 digit customer number. I need a macro to delete all the rows where the customer number sequence start with 1 thru 8 (that would be the first digit of the customer numbers).

View 9 Replies View Related

Adding Based On Certain Conditions?

Mar 6, 2013

I am doing a financial analysis for a hospital. I want to know how to add something to a number based on conditions. Base pay is $300 for the first 10 patients. If more then ten patients >11-20 add 40 dollars per visit if greater than >21 add 50 dollars per patient

View 3 Replies View Related

Adding Line Based On Value?

Mar 13, 2012

I would like to insert a line if a cell contains something. I get it to work in a macro with this:

Code:
Sub insert()
If ActiveCell.Value = "*" Then
ActiveCell.Offset(1).EntireRow.insert
End If
End Sub

But if i want it to do this in sheet change it doing nothing

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If ActiveCell.Value = "*" Then
ActiveCell.Offset(1).EntireRow.insert
End If
End Sub

View 6 Replies View Related

Counting And Adding Based On Text?

Jan 29, 2014

So an example xls is attached.

What I want to do is to get excel to calculate the numbers I have highlighted in yellow automatically, the data on the left is dynamically updated

View 3 Replies View Related

Adding And Subtracting Based On Text

Jun 6, 2014

I'm having an issue with Excel. I believe I need to use a nested IF statement but I can't get it to work properly.

Starting Total = 50
Col A Col B Col C
20 IN 70
40 OUT 45
35 IN 80

What I am trying to achieve is if col B says in then add col a to the col c total from the line above, if col c says out then subtract col a from the row above in col c.

I have worked out how to subtract or add in seperate formulas but i cant seem to get it to work in the same formula.

View 4 Replies View Related

Adding A Payment Based On 2 Values

Mar 12, 2007

i have myself a table on the left is all the members names and along the top are 12 dates (1/1/07, 1/2/07 etc).

In another sheet i have a drop down box for the name of the person and a dropdown box to select a date and then a space to enter the amount paid so i need a macro that will find the name and date i selected from one sheet and take the amount paid into the other sheet and insert the amount in the correct place.

If it is unclear what i mean i will post screenshots tomorrow.

View 12 Replies View Related

Adding Value Based On Cells Attributes?

May 10, 2012

I'd like to sum up values based on certain cell attributes. Firstly, I don't know if it's possible to define cell attributes and how to do it. Let me put some example:

I have one column where I've put some values and I'd like to sum up the values only for certain cells in this column. In an "OOP approach" I'd use some grouping method based on attributes, so each cell would have an attribute called ID, for example, and I could select only the cell with some desired ID.

View 1 Replies View Related

Adding Up Based On IF Statements - Not Enough Nesting Possible

Jun 9, 2014

In column A I have the debt name i.e. the company that owes us money.
In column B I state the amount owed to us
In column C the month by which the income is due. This is selected from a drop down list: M1, M2, M3 etc up to M12
In columns D through O, I have the forecast of what payments will be recieved in months 1-12

In the next cell I want to total payment that will be recieved by the due date. So, if the the cell in Coumn C says M5, then it would just add up the amount forecast in months 1-5, but if the first cell equals M2, then it would add up the forecats for M1 and M2. What formula do I put in here?

e.g. Manually enteres numbers would look like this, but I need a formula for cells in column P

A
B
C
D
E
F
G

[Code] .......

The only way I can think of doing this is with nested IFs but the limit is 7 and I need 12. I have used 12 monhts here for example. In fact on the real version I have 48 months and obviously can;t do 48 nested IFs.

View 6 Replies View Related

Adding A Group Of Cells Based On Yes In Another Cell

Apr 2, 2014

I am looking for a formula in D7

In col E I have a range of numbers
In Col AA I have yes or no

I would like to add all of the col E amounts from line 18-72 where the answer in AA of the same line is no or blank

E AA
18 2.00 Yes
19 3.00 Yes
20 5.00 No
21 7.00

D7 = 12.00

View 2 Replies View Related

Adding Cells Based On Conditional Formatting

Sep 17, 2009

I am using conditional formatting to make cell background's go red if the data satisfys some criteria

Now I want to add the values in those red cells, can anyone make a suggestion as to how I can do this.

View 6 Replies View Related

Dynamically Adding Row Blocks Based On Cell Value

Apr 2, 2014

I've managed to get coding that allows me to insert single rows dynamically based on a cell value. Example is if I enter a value in cell C3 the coding inserts the same number of rows below.

I've also created a simple macro that inserts a multiple row block under the active cell, complete with formatting, text and some merged cells. Example is I run the macro and it will insert a block of 3 rows, complete with formatting, borders, text and merged cells.

My challenge is to bring these two elements together. So enter a number in a single cell which will then insert the same number of row blocks, complete with formatting etc. I've added a file to sample what it is I'm trying to achieve. I can add the coding I already have as well.

Dynamic list sample.xlsx‎

View 2 Replies View Related

VBA For Adding Borders To A Range Based On Condition?

Jul 12, 2009

I have a spread sheet I use to track tools. One tool may be checked out / returned several times a week. When I do custom sorting I end up with the Tools listed neatly by date and number. EX: ...

View 10 Replies View Related

Adding Non-sequential Cells Based On Conditions

Nov 2, 2009

I'm trying to write a formula where I can add the values found in non-sequential cells in a row based on if the value in the previous cell in the same row meets certain criteria.

View 14 Replies View Related

Adding Cells Based Off A Set Numeric Value From Another Cell

Dec 11, 2009

I have an excel 2008 sheet and want to add cells in an odd way. Here is the best way I can describe it.

I want a formula to add cells based off a number value in another cell.

So it would be something like

IF M3= 1 add C5 to SUM ; If not then go to next step
IF M3= 2 add F5 to SUM ; If not then go to next step
IF M3= 3 add I5 to SUM ; If not then go to next step

IF N3= 1 add C5 to SUM ; If not then go to next step
IF N3= 2 add F5 to SUM ; If not then go to next step
IF N3= 3 add I5 to SUM ; If not then go to next step....................

View 6 Replies View Related

Automatically Adding Days Based Off Month

Oct 15, 2008

I am trying to automatically add the last day of the month based off of the month

for example

a1 = beginning date
a2 = end date

a1 will always be the 1st day of a given month

then based off a1, know the last day,(i.e.... october 1, then put 10-31-08 into a2, or november 1, then put 11-30-08......)

View 10 Replies View Related

Adding Ever Extending Data Based On Conditions

Nov 14, 2008

I work in Local Government and I am recording the contact that we receive for each transaction that are avoidable or unavoidable. This is broken down into service areas.

The data is imported into excel from a database and therefore is constantly growing.

What I want to do it a very basic summary page so that I can group those that are and those that aren't avoidable for each service.

Because the data is ever expanding I would like this on a separate sheet from the actual data.

I attach a sample of the worksheet and would be grateful if someone could advise what formula to use on sheet 2 in cells c4, c5, d4 and d5 to make it do it automatically.

View 5 Replies View Related

Adding Two Cells / Different Rows Based On Duplicate In Third Row

May 1, 2012

I have a sheet which has the following Columns:

Name..........Sales..........Returns..........Net

These are columns B,C,D,E,

Because the data is imported, it shows one row for the person's sales and another for their returns like this:

Dave...........100...............0...............(Blank)
Dave..............0.............-20..............(Blank)
Fred............200...............0...............(Blank)
Andy..............0............-500..............(Blank)

What I am trying to do is get the net sales of 80 in either of Dave's rows in the Net column, then I can hide the duplicate row. However, this is complicated by the fact that names without returns, (like Fred in this example,) do not have a second row. (This also applies to those names without sales, but with returns, like Andy).

View 6 Replies View Related

Adding Rows And Products Based On Counta

Sep 16, 2013

I am trying to write a VBA code that does the following: The table below provides a sample of the Source (i.e how we start off with) and the Result (i.e how the format needs to look like). More specifically, for each product in 1st column that has a number in blue and or red column i need a row inserted immediately below (hence the counta function to indicate how many empty rows to insert). The end result should have a separate line for each blue/red colour depending if there is a number shown in the source data. Obviously the result should be displayed in another sheet (i.e sheet2).

PRODUCT
BLUE
RED
COUNTA

PROD A
9902

1

[Code] .......

View 5 Replies View Related

Adding Worksheets Based On Cell Criteria

Aug 4, 2006

I would like one column (column A) to be an "indentifier" column. Column B is the customer name, column C is the customer city and state, column D is the customer phone number, and column E is the customer email.

By calling column A an "identifier" column, what I mean is that I would like to be able to go down the list and put an "x" next to each customer I would like to include in that particular workbook. I would then like to be able to run a macro which would take each of the customers with an "x" in the column A, create a copy of the template comfirmation call sheet, and fill in the identifying information from columns B through E into the copied template. Each worksheet would also need to be renamed the same as the customer name. It would need to perform this same procedure for each row that has an "x," making sure that all worksheets (confirmation call sheets) are grouped into one new workbook.

Sheet 1 is called "main"
Sheet 1 contains 5 columns
A = Blank
B = Customer Name
C = Customer City and State
D = Customer Phone
E = Customer email

Sheet 2 is called "template"

"x"'s are placed into "main" sheet, column A to identify which customer will be affected by macro...................

View 2 Replies View Related

Adding Formula To Macro Based On Moving Cell?

Jan 14, 2013

I am having difficulty expressing a formula so that if a cell is greater than zero, it adds the value of that cell to a String figure. I have got as far as the following, the 'problem' area is in red.

Sub Share_Sales3()
Dim Prompt As String
Dim Caption As String

[Code].....

View 3 Replies View Related

Adding Cells Based On Shade / Text Colour

Jul 4, 2007

I have a spreadsheet where I am adding up figures in columns.

I need to differentiate between 4 different "types" of cells to sum.
Cells with figures in them are either green, red or have no fill; and some cells contain no figures at all.

At the bottom of the column, I need to total up all the figures in red cells, as well as all the figures in green cells.

The shading of these cells is not permanent - colours are changed as work progresses, so I need the totals to keep up with this.

If it cannot be done based on cell fill colour, is there any other way to do it, other than the usual long-winded way of @sum(..... etc

View 9 Replies View Related

Adding Data By Row Based On Typing In Cell Contained In Row

Mar 10, 2009

I've built (but not completed) a spreadsheet used to organize multiple Bill of Material lists. This list is a row-by row list of products with information relating to a specific part number including: Mfg, Part#, Qty Used, Cost Ea, Vendor, among many more.

Here's what I'm trying to accomplish first. As this list grows, my intension is the be able to recall a row of data (or control what columns of the row are recalled) from this list and be able to easily add them to the list. I would like to be able to do this by typing in data in one cell in the row (like the Part#), and then have a macro or VB code that will automatically fill in a defined number of columns with the descriptive data like: Mfg, Cost Ea, Vendor, etc.

Currently, the data for the rows (if it already exists) would reside higher up in the list on the same worksheet but could also potentially be on another tab in the workbook.

View 9 Replies View Related

Deleting And Adding Rows Based On Date Criteria

May 21, 2006

ColumnA in my data base contains dates. How can I delete the entire row if the date is before today's date and add a new date at the end of the range to replace the deleted row.

View 9 Replies View Related

Adding Column With Description Based On Preset Codes

Jul 13, 2006

First it should Insert a Column to the left of A. Then it should go to column B and search for the number 99 and delete all rows after it. In column C I want it to do the following formula =vlookup(b2,descriptions!$b$2:$c$250,2,false) and have it copied all the way down to the end of data.

Next I need labels added to the tops of the rows
Next I need the description columns in C to be copied to column I
Finally, beginning at J2, I would like the formula (e2 * g2)/100 entered to the end of data. Attached is sample data.

View 2 Replies View Related







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