Combine The Specified Value

Feb 10, 2010

I have 12 workbooks (one for each month), they have a list of assets to our company and a running total of all expenses for the month that they incurred. The 13th workbook is a yearly analysis of each asset. I need to transfer all charges into this worksheet.

So for example:

Worksheet 1 (January)

Column A Column H
Asset # Total Expense
5021 $3,041.52
970289 $242.08


Worksheet 13

Column A Column B Column C Column D
Asset # Asset Description January February
5021 Rivet Machine $3041.52 $345.65

So hundreds more machines for twelve months can take awhile to populate this info and very confusing when dealing with separate worksheets.

View 7 Replies


ADVERTISEMENT

Combine 5 Procedures Into 1

Apr 16, 2013

I need to get 5 small subs into 1 sub. (run the whole program by pressing once.

Please see attached file with codes : ServiceDriftMaaling.rar

View 6 Replies View Related

How To Combine Three Formulas

Mar 29, 2014

Ok, These are the three formula's. How do I combine them or can I.

=IF((B2="GOV"),[@[Gal Billed]]/1000*1.5)

=IF((B2="NPROFIT"),[@[Gal Billed]]/1000*2,0)

=IF((B2="COM"),[@[Gal Billed]]/1000*3)

View 4 Replies View Related

Four IF Statements To Combine

Jan 29, 2014

I need to write IF statement with 4 criteria, or at least I think IF will do the trick. It would be difficult and not very visual to describe my question here, therefore I have attached a dummy workbook with the comments. Basically I have got 2 values in 2 columns. Next 2 columns will hold letter "x". There are 4 possible variations how "x" will appear in those two columns: first, second, both or none. So depending where the "x" is, I need to return one of the 2 values.

View 6 Replies View Related

Two Formulas Need To Combine As One

Nov 9, 2007

I have two formulas that i need to combine as one, but i dont now how.

This is the other formula:

=SUMPRODUCT((Huollot!I2:I500="Ty”n alla")*(Huollot!K2:K500="Warranty")*1)

The other one:

=IF(NETWORKDAYS(Sheet1!C1;Huollot!C2:C500)>20;1;0)

the biggest problem is that this formula does not work as it is. Or is there some other function than networkdays that i could use?

The purpose of the formula is to count how many "objects" that are in service have been there for over 20 days. There a a few other criteria also, but sumproduct takes care of that. Can networkdays even be used the way i´m trying to?

View 14 Replies View Related

Combine The Cells In A1

Nov 26, 2008

In cell B1 I have the number 1
In cell C1 I have the number 1031000

I know how to combine the cells in A1. I am getting a result of 1-1031000

What I would like to happen is that 1 becomes 001.

Ending result is 001-1031000

problem is that cells in B could be one, two or three digits.

On a small scale I could fix manually but i have over 15,000 rows to deal with

View 2 Replies View Related

Combine Number In One Row

Dec 24, 2008

I want to combine number in one row.

Column A
12
13
14
15

Need to be in column B. 12,13,14,15. I tried “=A1&”,”&??

View 3 Replies View Related

Combine The IF And OR Queries

Jan 8, 2009

Trying to write an IF query looking for multiple returns that would equal the same result.

I have a series of number where the last digit would result in the same return if the digit were 1 or 6, 2 or 7, 3 or 8, etc.

1 or 6 = 1
2 or 7 = 2

I have been trying unsuccessfully to combine the IF and OR queries

View 12 Replies View Related

Combine SUMIF With IF

Jan 23, 2009

I am trying to use SUMIF as part of an IF statement, What I am trying to do is, for example, if a column has two values M and P, then SUMIF only those rows that have a corresponding M, and not calculate the P's.

View 9 Replies View Related

Combine Several Spreadsheets Into One

Jun 24, 2009

I am so frustrated to combine several spreadsheets into all in one, and seperate all in one spreadsheet into several with the same header frenquently. Pls check the attached example excel spreadsheet., could anyone teach me how to program in vba to achieve the result as above?

View 6 Replies View Related

Combine The Cells

Oct 15, 2009

i m working on a spreadsheet and i need cell A+B=C..

Example
Cell A has a first name (John)
Cell B has a last name (Smith)
Cell C has last name then first name seperated with comma

View 4 Replies View Related

Combine Three Cells Into One?

Jan 23, 2013

Is it possible to combine three cells into one? Like for example, column A is the first name, column B is the middle name, column C is last name.

Is it possible put it on a format like this: Last, First M.

(middle name on column B is a name, not an initial.)

And can I make it only the first letters are capped. Last, First M. Or all small letters. last, first m.

View 7 Replies View Related

Combine Two Tables Together?

Apr 1, 2013

I have:

- Table 1 has ~1,600 records (name of game, meta score, user score)
- Table 2 has ~3,000 records (name of game, genre, publisher)

I want:

- Table X has ~1,600 records (name of game, meta score, user score, genre, publisher)

Basically, I want to take the genre and publish columns from Table 2, and add it to Table 1. However, I want to ignore the extra ~1,400 games that Table 2 has.

I'm nearly a complete noob when it comes to excel. Noob to the point where I don't even know what this thing is called, so I don't even know how to search for it properly! I know something can be done since there is a common column between the two (name of game).

Edit: Also, I think it'd be easier if I were able to attach my excel spreadsheets but I don't even know how to do that

View 1 Replies View Related

How To Combine Two Worksheet Into One

May 1, 2013

combine two excel worksheet into one new worksheet. thing is on both of these worksheet doesnt have a unique identifier. Is that possible & how.

View 2 Replies View Related

VBA To Combine Data

Aug 18, 2014

On Sheet1 in Range A1:A10, I have the following data: O O M3 M O O M M D9 O (in reality, the data covers the range K38:AN90, but I'm simplifying my requirement here)

On Sheet2, in Range A1:A10, I have the following data: O O O O A1V O O O O D1V

I need some VBA code that will loop through each cell on Sheet2 and where it comes to any containing the letter 'V', it will replace the data on corresponding cell on Sheet1 with that data.

In this example, after running the code, Sheet1 will read: O O M3 M A1V O M M D9 D1V.

The only other caveat here is that I need to be able to return to the original data on Sheet1 but I'm thinking I'll add some code to toggle back by making a back this up on a separate sheet so I can immediately reinstate original data on Sheet1.

I want to avoid 'Copy/Paste' and if at all possible so prefer to use Range("X").Value = Range("Y").Value etc.

View 2 Replies View Related

Combine Files

Jan 23, 2009

I have a scenario here and i really dont even know where to start. If anyone can help me with some code for this project that would be great.

I have a folder that contains several subfolders (10-20). Within each subfolder is a number of excel files (the number of files varies) that contain 2 worksheets each.

What i am trying to arrive at is one file for each subfolder that has the first tab of each of the files. The original files contain links, so the values and formats must be pasted. It woul dbe great if all of the new files could be saved in the main folder among all of the subfolders.

It would be especially great if each tab could be named for its respective file and each new file for its respective folder.

View 6 Replies View Related

How To Combine 2 Macros

Mar 14, 2009

I probably have a odd request, but then I think I'm just different ?

I have an Excel Workbook with Col. A approximately 1/8" wide. The formatting of this col is that the cells are set to have the typing fit into the cell, therefore it becomes so small that no one can read it. Just what I wanted. If the user needs to read what's in the cell, they can click on the cell and read it in the formula bar.

Col. B is approximately 2" wide

1st, the user enters the Path and File name, with extension, into cell A34(example).

2nd, the user types in a File Name that they will best understand into cell B34.

The Workbook is now saved.

When the user wants to open that file, they click on the Name . . . Col B34 - Easily recognized by the user.

They then click either the Button that say's "Open Excel File" -or- "Open Word File.

The macro automatically moves the selection over to column A, then the file is opened.

Now what I need

I want to use just 1 button and I will name it "OPEN"

The 2 below macros work excellant and I still need the functionality of each. What I want is that 1st it trys to see if it is an excel file and if so, opens the file and stops.

If the macro determines that it is not an Excel file, the macro then goes to the Word macro and determines if it really is a Word file and if so, opens the file and stops.

NOTE: I want to point out that I still need all the checking etc that the 2 macros currently do.

Here are the macros

OPEN EXCEL FILE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

View 10 Replies View Related

Combine Many Columns To One

Nov 17, 2009

Essentially need a macro to combine the columns into 1 column.

Need a Macro to put everything in each "box" into one column, for example CU is the end of the first box, CV to GP is the second box ect. Essentially a box is the row where the yellow line is to the column where the yellow column is.

The problem is the setup of these colums change, sometimes they are bigger sometimes smaller and the spaces beneth it change. Sometimes I might have a column which goes to row 18 followed by 3 blank rows then the yellow box

I first design the first colum then select that and drag across to complete the rest ( my real file has links ect )

So I need a macro in which it can scan the first column up to the yellow line then put everthing within a "box " into 1 column, each )

then repeat the same process for other boxes with each box being put in its own column ( preferablly leaving an empty column in between )

THe file itself will help clarify any problem, if this request is not possible if it could combine every column into 1 column ( along with the spaces to the yellow line ) that would help also, i could manually cut each box into another column then.

View 10 Replies View Related

Combine The Columns

Dec 3, 2006

I need to find a way i can easily combine a1, b1, c1, d1, and so on, about a 100 of the, i need to combine, each one has different text that needs to become together. I know one forumula =a1&" " &b1&" " &c1, but doing that for about 100 colums, would take for ever, is there a easier way?

View 12 Replies View Related

Combine 2 Functions Into 1

May 27, 2009

I tried to do a search for this but the search function was not working.

I have an excel sheet that I can scan Mac address into. The reason I created the sheet is because when I scan them in they are uppercase and do not have separators. I would like to combine 2 excel functions into 1

This one

=LOWER(C2)

and this one

=LEFT(E2,2)&":"&MID(E2,3,2)&":"&MID(E2,5,2)&":"&MID(E2,7,2)&":"&MID(E2,9,2)&":"&MID(E2,11,2)

View 2 Replies View Related

How To Combine Set Of Two Numbers

Dec 13, 2011

I have two set of numbers placed on two separate sheets of an Excel file. I want to mix them in certain proportions (Proportion changes frequently). Can I do that in Excel if Yes how ?

For Example :-

[IMG]http://www.mrexcel.com/forum/data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAegAAAJuCAIAAAD0MwYDAAAgAElEQVR4nO2dvY4ct7ZG+SxOlE9qKJlAGBwoOIESC05H
iaHEUDA4AgxHhgbOL k4wgOMJ/QKK/AgODNwnuIleYm7QP8UiN1n/tfcuroUOLHb9sNi917DZ7frC3//7fzx48

[Code]....

View 3 Replies View Related

VBA Combine Each Row Into One Single Row?

Dec 13, 2011

I want to combine each row in column A that contains data (so stop process when the next cell is blank) into one single cell. However, each time a row is added I want it to have a new line, except for the last one. I don't know vba that well. I came up with something.

Basically I want to do this:
=A1&char(10)&A2
VBA
Dim i As Integer
i = 0
Do While Not IsEmpty(ActiveCell.Offset(0, -1))
If (i = 0) Then
ActiveCell.FormulaR1C1 = "=RC[-1]"
i = i + 1
Else
ActiveCell.FormulaR1C1 = "&CHAR(10)&R[i]C[-1]"
i = i + 1
End If
Loop

View 2 Replies View Related

Combine IF With AND, And VLOOKUP

May 5, 2008

I need to lookup two different columns and if values match, then bring back one value:

For Example:
Data:CityNameAtlantaDaveNew YorkCharlieLos AngelesDanSt. LouisDanMemphisSteven

Lookup Table:CityNameCodeAtlantaDaveDAVNew YorkCharlieCHALos AngelesJavierJAVSt. LouisDanDANMemphisRobertROB

The formula I'm looking for would produce the following results:
If City on Data matches the city on Lookup Table, and the name on data matches the name on Lookup Table, then bring back the code on Lookup Table.

Result would be:
Results:CityNameResultsAtlantaDaveDAVNew YorkCharlieCHALos AngelesDanWill be blank, as the names on Data and LookUp Table don't matchSt. LouisDanDANMemphisStevenWill be blank, as the names on Data and LookUp Table don't matcm

View 9 Replies View Related

Combine Two Sheets Using Vba

Sep 18, 2008

How to combine two worksheets (sheet 1 and sheet2) to a sheet named “combined”?
Sheet 1 and sheet 2 contain data wich is filled up by using formulas. The data range is from col A to F with headers in the first row, the length is variable.

Here’s an example:

Sheet1
ColA ColB ColC ColD ColE ColF


33 44 46 84 36 567
10 12 56 98 100 64
0 0 0 0 0 0
0 0 0 0 0 0


Sheet2
ColA ColB ColC ColD ColE ColF........

View 9 Replies View Related

Combine Lines

Jan 10, 2009

I have a text file which is wrapped and i am trying to read it through VBA. I want to combine wrapped lines in one line

for e.g.:

abcdefgh
ijklmno
pqrstu
vwxyz
need
abcdefghijklmno
pqrstuvwxyz

View 9 Replies View Related

How To Combine Two If Statements

Feb 13, 2009

What I want that cell Q4 displays:
1) When the current date is larger than the date in O4 AND is smaller than the date in P4 than say "Update!"
- When the current date is larger dan P4, say "Expired!"

Every other scenario the cell must be blanc.

To do this I have made two seperate formulas:
1) =IF(AND(NOW()>=O4;NOW()P4;"Expired!";"")

How do I combine these into 1 cell? I have tried allmost every combination, I'm ready to throw my monitor through the windows

View 9 Replies View Related

Combine PDF Using VB Codes

May 28, 2009

I am looking out for a macro by which i can combine multiple PDF's into one through excel using vba codes.

Please note that:
> all these PDF's are in one folder
> the code needs to be dynamic (i can have an option to combine selected PDF's
> i am working in excel 2007
> i have acrobat 8.0 installed

View 9 Replies View Related

Combine Rows Into One

Jul 7, 2009

I have data as follows -
OrderTDF
1gc3
1gc3
2du3
2du3
2gc3
3du3
3du3
3du3

and want to combine lines by order so that data now becomes this -
OrderTDF
1gc3gc3
2du3du3gc3
3du3du3du3

View 9 Replies View Related

Combine Two If Statements

Oct 28, 2009

Is there a way to combine two if statements below.

IF(I2=0,J2*-1,J2)IF(I2

View 9 Replies View Related

Combine Xls Files

May 17, 2003

My question is do u know any sort of program that can combine 100 xls Files (all has only one sheet ) to only one huge file in just one sheet !

and yes all the sheets having same no of columns and rows of data !!

View 9 Replies View Related







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