Find Out How Many Of Part # 123456 Have Been Sold All Year

Mar 9, 2009

I have a one year sheet for a customer. Column A has a 6 digit part number, Column B has the quantity of that part number and Column C has the date they of the invoice. There could be several rows with the same part number (say, if they purchase them monthly, or weekly they would have 12 or 52 rows, etc.). If I want to find out how many of part # 123456 have been sold all year, is there a formula I could use in Column D?

View 8 Replies


ADVERTISEMENT

Sum Values Against Part Of A Date, Year

Nov 19, 2009

Basically, each date, in the format mmm yy, has a cost, two cells right of the date. I want to create year sub totals at the bottom of the cost column by looking up the year element of the date....so in my own wierd logic, I want to ask, if in the range of cells C5 to C22, contains the year 10, add the cost in column E to the total cell (E27).....this is probably laughably simple to you guys, but when you dont know the correct term for the action, it is a swine to find.

View 5 Replies View Related

Find Pay Date From Date Sold (Friday Of Following Week)

Feb 17, 2014

If a sale was made between 2/09/2014 - 2/15/2014 return the date of the following weeks Friday. In this case 02/21/2014.

View 3 Replies View Related

SUMIF Month & Year: Find Total Cost By Month Only For Year 2009

Dec 17, 2009

In attached sheet, I am trying to find total cost by month only for year 2009. Currently formula I have in Cell c24, is {=SUM(IF(MONTH(B2:B9)=1,D2:D9,0))} But this calculates for all years, not just 2009. How do I modify above formula, so for each month, it shows total cost but only for 2009?

View 2 Replies View Related

Find First And Last Row With A Given Year

Jan 9, 2007

I have some VBA code that I've developed that will select a range based on the beginning and ending rows.

Now, I need to figure out the code that will find those rows for me based on a given calendar year.

Imagine I have the following in Column A

1-Dec-05
20-Dec-05
5-Aug-06
6-Sep-06
6-Nov-06
11-Nov-06
31-Dec-06
5-Jan-07

If the user selects 2005, the initial row would be 1, and the final row would be 2. Likewise, if they selected 2006, the intial row would be 3, and the final 7.

This is part of taking a large amount of data and moving it over to a separate template. I have all of the rest of the code figured out, and I'm just stuck on this point.

View 9 Replies View Related

Find Part And Add Values

Apr 16, 2009

I don't know if this is even possible via VBA, but thought I'd throw it out there and see what you guys think.

In the attached workbook column D contains fields for the UsagePN. If a part is "rolled-up" in our order system to a new part number, then the OLD part number, (in colmn B), is associated with a UsagePN. What I need to do is, for every part that has a UsagePN in Column D, I need to find that part number in column B and add the inventory values from the old part number to the new one.

For Example:
Row 74 in the attachment has a UsagePN of AC1230105V. I need to take the values from cells G74 thru K74 andd ADD them to the existing values in G77 thru K77, which are the inventory values for AC1230105V.

In other words, since part number AC1230105 has rolled-up to the new part number AC1230105V, I need to add all of the inventory to the new part number, AC1230105V.

After this is done for ALL parts with a usage part number, I will delete all the rows containing UsagePN's.

Here's the catch, as you can see in the example, there is no consistency, so a simple formula like adding the values to the same part number with a "V" at the end won't work. I guess you would have to do something like for each row with a value in column D, dim that row so you can refer back to it, then search for a match in column B, insert a "helper" row below where the part number is found to add the quantities, then replace the original with the helper row, and then delete the helper. One of you guys probably knows a better way.

Keep in mind that you won't always find a match, so the macro needs to continue to the next part if no match is found.

I hope I was clear. This one looks like it will be a nightmare, but I hope somebody on here has some ideas.

View 14 Replies View Related

Find Whole Cell Value, Not Part

Apr 29, 2008

I use this code to "search" a value in columns A or B and if found to select the row the value is in.

Trouble is if I look for say value 11 (the code finds 1) I understand what happens but need your help to fix it hoping to keep it as simple as it is. (I cannot use filters)

Dim wht As Variant, Found As Range
wht = InputBox("Searchfor")
Set Found = ActiveSheet.Columns("A:B").Find(what:=wht)
If Found Is Nothing Then
MsgBox "Not found"
Exit Sub
Else

View 9 Replies View Related

Find Part Of Work In Range?

May 5, 2014

I want to go ("E:E") and if part of the cell contains "WAL-MART" than put the word "Food" in cell G of the same row and contunie until end

View 1 Replies View Related

Find Part Of String And Delete

Feb 25, 2009

Find part of string and delete. I have the following type of string:

View 4 Replies View Related

Find And Replace Part Of Cell

May 20, 2009

As part of a macro i do a find and replace on a range cells that replaces "/1" with nothing (""). Therefore 2/1 becomes 2, what i don't want though is if the de-nominator includes a 1 but not only 1 to keep the whole of the de-nominator, say 8/11 does not want to become 8/1.

View 4 Replies View Related

Find And Return Part Of A Date

Nov 25, 2008

In A1 I have a date '01/01/2008' and in B1 I want it to return the year and month which I have acheived with =year(A1)&month(A1) which returns '20081'. This is great but I want the format to return '200801', not '20081'. Also if A1 is blank I want an empty cell in B1. I tried this with the following but have failed.. =IF(A1,"","")=YEAR(A1)&MONTH(A1)

View 4 Replies View Related

Find And Replace Part Of Filepath

Apr 20, 2012

I'm trying to 'find and replace' part of a filepath which is buried in hundreds of formula, but when I hit 'Replace All' a file navigation window appears. Hitting cancel simply bring up another window, and again and again, each time a replace is executed.

View 3 Replies View Related

Find Part Of Data In Cell In Particular

Dec 12, 2006

i can use the VLOOKUP function to find entire cell in one table and paste the required data from the row....

Is there a function to search part of data and paste the required data

View 9 Replies View Related

To Find Part Contents Of A Cell

Apr 16, 2009

I've got a code that does what I want it to do, but I have to select the start point manually becuase it's position varies on different documents. It's usually around row 650 out of 1200, but the cell I want to start the macro at always contains the word ELECTRONIC. What I would like to do is modify my code so that it finds that cell itself and then runs the rest of the code. I'm not very good with VBA, but I've tried a few things like Dim LR-2 and using that but I get error messages about duplicates.

Here's my code

HTML Sub Macro1()
'
' Macro1 Macro
' SALES ORDER FORMAT
'
'

View 9 Replies View Related

Find And Replace Part Of Another Formula With Value Of Cell

Jun 26, 2012

I have a formula in cell J2:

='H:Folder[CI10001G.xlsm]Sheet'!$C$5

I need a macro that will change the part of the formula that is "CI10001G" to the value of cell A2 which would basically be something along the lines of "CI10004D" so the formula would change to the following:

='H:Folder[CI10004D.xlsm]Sheet'!$C$5

And then this formula will then successfully look in the newly directly file path.

View 9 Replies View Related

Find Part ComboBox Choice In Range

Oct 28, 2006

I have ComboBox on a UserForm that is looking to a long list on a worksheet. A lot of the entries in this list start with a brand name instead of a more discriptive name. I really need to be able to find an entry with any key word (not just the first word) in this list.

View 7 Replies View Related

Find Part Words In Column In Another & Copy

Feb 22, 2008

see attached spreadsheet. In sheet 1 I would like to look up each word in column D, seeing if they are in column B at all. Note if the word "Jill" is in D and "jilly" in a surname in B I would like it to get picked up. I have highlighted manually those that would get picked up. Those that do get picked up I would like to be copied into column C as per sheet 2 (this is what I would like it to end up like). There is a very long winded way of doing this using a find function and 1 column per word but as the actual sheet i'm using has thousands of different words this isn't really viable!

View 8 Replies View Related

Find The Part Codes Having Some Indication And Arrange Them In A New Column

Feb 19, 2010

My question is how many parts havinig end with C?Also arrange these parts in ascending order in a new column. Refer to the attached file and expected result also.

View 5 Replies View Related

Find Certain Values Then Copy Part Of Line To Another Sheet?

Aug 6, 2012

I tried to make something to find a certain value (from a userform) in a range, and then copy the line partially to another sheet. Then go forth to the next found item and do the same. But... I cannot seem to make this loop.

With Sheets("Data input").Range("N5:N1100")
Dim FoundRange As Range
Worksheets("Data input").Activate

[Code].....

View 5 Replies View Related

Find Part Text On All Sheets & Delete The Column

Sep 26, 2007

I am trying to move through the worksheets and delete all columns with "Accession" in contained in them. I have to do this with an external macro as the spreadsheet with the data is created from another program. I tried this and get an 'Object or With block variable not set' error and the debug highlights the Cells. Find line of the code.

Also, the number of columns could be variable within the spreadsheet as it is compiled by the other program.

Sub DelAccessionNum()
Dim Wrkst As Worksheet
For Each Wrkst In ActiveWorkbook.Worksheets
Cells.Find(What:="Accession", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, MatchCase:=False _
, SearchFormat:=False).Activate
On Error Goto Completed:
Selection.EntireColumn.Delete Shift:=xlToLeft
Completed:
Next
End Sub

View 9 Replies View Related

Find Last 12 Values Based On Week Number / Year

Jul 9, 2014

I am trying to fill a table of the last 12 values for the purposes of creating dynamic charts. I remember last time i used named ranges, offsets etc etc but been too long to remember how.

Ive attached a worksheet to explain it better.

I should probably mention, I want to be able to change cells C1 and C2 to update the values. Everything else wil be rather static.

Attached File : Test.xlsx‎

View 5 Replies View Related

SUM Of Clumps Of Different Items Sold

Jun 11, 2009

I have a 7000 row spreadsheet of items sold over the past 6 months. I sorted them by their SKU, but some of them sold in multiple qty in a given day.

What is a formula to calculate the total qty of each SKU sold?

Example:
Column A = SKU 001
Column B = Qty Sold in a particular purchase (most have 1, but some are 2 or 3 or 4, etc.)
Column C, (Row 10) = Total where I would like to come up with a number for columns 1-10 (for example).

next item:
Column A = SKU 002
Column B = Qty Sold in a particular purchase (most have 1, but some are 2 or 3 or 4, etc.)
Column C, (Row 17) = Total where I would like to come up with a number for columns 11-17 (for example).

View 8 Replies View Related

Counting Products Sold Per Rep

Aug 27, 2008

I'm trying to write a formula to count under certain conditions. I tried the following (and some other variations), but it doesn't work, it comes back #VALUE!:

=COUNTIFS('[Compliance 20080804 Friday.xlsx]Compliance and Interview Log'!$K$10:$K$100,D7,'[Compliance 20080804 Friday.xlsx]Compliance and Interview Log'!$A:$A,A34)

I need to count the number of products a rep sold in one day. He can have several sales in one day, and also sell more than one product per sale. The list I am pulling from has all sales from all reps for the day.

View 10 Replies View Related

Find Range Of Part Number And Bring Back Value 0 If Match Or Value Of Another Cell

Sep 4, 2013

I need a formula to check a range of parts and bring back a value of 0 if matched or the value in another cell if it doesn't match.

Part number H-200-3
Part number H-200-3-A
Part number H-200-3-B

If I enter any of the above part numbers then cell B1 returns 0 if it is a different part number then B1 would need to match cell A1.

View 2 Replies View Related

Find Next Working Day For Part Time Employees - Exclude Holidays / Weekends

May 16, 2014

My aim is to find the end working date for each task, as well as the next working date for the next task. The working days for this employee are only Monday (6hours), Wednesday (6 hours) and Friday (8hours).
 
D
E
F
G
H
 
Start Date
Duration
Completed Days
Remaining Days
End Date

4
5/05/14
3

=IF(TODAY()>=H4, E4,IF(TODAY()

View 3 Replies View Related

Not Sold Continuous Months Count

Mar 27, 2014

Find attached , expected result in on w2 needs to be 9 that I have punched manually : Team(A)01.xls‎

View 14 Replies View Related

Conditional Summing (% Of The First 5 Units Sold Are New)

May 8, 2008

I need a formula that will tell me what % of the first 5 units sold are new, based on the dates provided. This is an example of the data I am working with. What i am looking for is a cell that will respond with .4 (meaning 40% of the first 5 units are new) ...

View 9 Replies View Related

Calculating Of Total Number Of Tickets Sold?

Oct 7, 2013

I have created a spreadsheet as follows:

Date revenue total tickets sold total tickets sold per day
10-1 166,453 15374
10-2 166,915 15414

How do I formulate so that the numbers automatically update per day

View 2 Replies View Related

Maximum Number For Apple Sold On Monday

Dec 4, 2011

I have a table and I want to find out the what is max number for Apple sold on Monday.

FruitsQtyDaysApple20SaturdayApple50SundayApple100MondayApple500MondayApple20
MondayMango50MondayBanana640FridayMango30FridayGet MAX ForApples on Monday500

View 9 Replies View Related

Count Sale Days Between Sold Articles

Jan 29, 2009

In table A i have the purchase date of all the articles bought with their corresponding quantities.

Table A:
Purches DateArticleQuantity12/12/2008Radio2012/12/2008Binocular6012/12/2008Fan3112/12/2008Iron5012/12/2008Sun Glass15012/12/2008Tv612/12/2008Head Phone3712/12/20082G Card12


In table B i have the sold dates of all the articles with their corresponding quantities.

Table B:
Sold On ArticleQuantity15/12/2008Iron115/12/20082G Card115/12/2008Radio216/12/2008Tv116/12/2008Iron217/01/2008Head Phone317/12/2008Iron117/12/20082G Card122/12/2008Radio127/12/2008Fan1

An finally table C is a result chart which shows the days between the purchase and the selling dates of the articles.

Table C:
Article Sale After purches date 12/12/2008 Days ?Sale RepeatRadioBinocularFanIronSun GlassTvHead Phone2G CardAfter Every ? Days3163453After Every ? Days1145After Every ? Days5After Every ? DaysAfter Every ? DaysAfter Every ? DaysAfter Every ? DaysAfter Every ? DaysAfter Every ? DaysAfter Every ? DaysAfter Every ? Days

View 9 Replies View Related







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