Copy, Insert Row Below And Merge Content Of Two Cels

Feb 9, 2007

I have a list of 12.000 pictures which have to be "connected" with the article number (1000) & color (21). Here starts the problem... Each article usually has more than 2 colors, but is listed only once per row and the colors are stated in columns.

What I would need is a macro or function that would do from such structure:

art description color1 color2 color 3

1000 product A 21 22 23
1001 product B 19 23

this:

art. description picture

1000-21 product A, color 21 1000-21.jpg
1000-22 product A, color 21 1000-21.jpg
1000-23 product A, color 21 1000-21.jpg
1001-19 product B, color 21 1001-19.jpg
1001-23 product B, color 21 1001-19.jpg


1. check if the row in color columns is not null
2. if this is true, then I would like to copy the entire row & paste it below existing
3. then the "art." column would be changed (=A2&"-"&C2), so the article woul get suffix of the color (and column "picture" would be created, maybe something like =A2&".jpg")
4. if any other color column in the same row is greater than null, then proceed to next color & repeat steps 2. & 3., else go to next row
5. until all 5000 rows are converted in about 12.000 rows.

View 9 Replies


ADVERTISEMENT

Merge The Content Of 2 Cells Into 1 (with A Comma Separating The Content)

Jan 29, 2007

how to combine the content of 2 cells into one cell and have the information separated by a comma.

For example:

CELL 1:
Software 1

CELL 2:
Spreadsheet Software

The desired results is:

CELL 3:
Software 1, Spreadsheet Software

View 3 Replies View Related

Merge 3+ Datasets With Identical Structure To Summarize Content By Pivot Table

Jun 11, 2014

I have several data sets that that have the same column headers (product portfolio data, split by categories into different workbooks) and the same structure and want to merge them to create summaries in a pivot table that I can slice the way I need to look at the data (e.g., by "Category 1" level, "Category 2" level, etc..). The messy way would be to just copy/paste all data in one master set and then create one pivot from it. The problem is that this a) takes a lot of time since I have several data sets and b) the content of these data sets is constantly changing, so I would need to constantly update the master data set by replacing updated sub sets.

I was hoping that I can use PowerPivot for that which is apparently not the case - as I understand PowerPivot is only being used to link data sets that contain a column with an identical key to then basically do on a larger scale what a vlookup would do. Is there a way to do this with PowerPivot?

View 1 Replies View Related

Time Cell To Multiple Number Cels

Apr 6, 2009

A1 has 3:11:00 PM as a cell value (displayed as - 3:11). I want A2 to = 3 and A3 to = 11. no concern about the seconds or the AM/PM

View 5 Replies View Related

Find Different Content And Insert Row Before It

Nov 14, 2013

I`m trying to create a macros that find new cell content in a column and add a row before it.

In the attached file is an example : insert_row.xlsx

In column A is the name of the row. And in some rows the name is changed.

I want to add a row before this change.

View 9 Replies View Related

Insert A Blank New Row If Check The Different Content In The Next Row

Nov 24, 2008

i attach my sample excel file here, book1.xls. sheet1, "input". it check the column "C" row by row and if it detect the different content data in next column, it will auto insert a new row. it will ignore the space. below is my coding:

View 3 Replies View Related

Insert And Merge Blank Rows?

May 23, 2013

I have a spreadsheet that I need to insert a blank row every other row and then merge that blank row. I can do this with the macro below. My question is that I only want the merge on each blank row to merge A:H. Example would be insert row 9 and merge A9:H9. Insert row 11 and merge A11:H11. and so on till the end.

Code:
Sub insertrow()
Application.ScreenUpdating = False
Rows("9").Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.EntireRow.Insert
ActiveCell.EntireRow.Merge
ActiveCell.Offset(2, 0).Select
Loop
Application.ScreenUpdating = True
End Sub

View 2 Replies View Related

Look At Two Sheets And Auto Insert Content From One Sheet Another

Apr 14, 2009

I have two sheets

One is the master and the othere sheet which has the raw data.

On each sheet you have a unique code for the product which is the same on both sheets.

From the raw data sheet i want to the weight for that product to be inserted onto the master sheet.

(the problem is that both sheets are not in order so you cannot just copy and paste the column)

the unique code on the master sheet is G9 and the unique code on sheet 2 is A27 the weight on sheet 2 is r27 and want the corresponding weight for the product to appear on the master sheet in column BI9.

View 9 Replies View Related

Insert New Row To Add More Rows To Merge Range With Wrap Text?

Aug 8, 2014

I have a sheet that has a section in range (c18:k25) (it is merged and text is wrapped) If that amount of space is not adequate to fit all their information I would like to add a macro that when activated it asks how many rows would you like to add and then based on that number whether it be 1-10 it would insert a new row to that merged range so they can continue adding more information . I have the sheet locked down to prevent changes so it would have to be unlocked and then re-locked within the macro.

View 1 Replies View Related

Sort Text By Character Length, Insert Spaces, Merge Cells

Apr 19, 2007

I have multiple columns with many rows of unique text in each. Here is an example of what the 1st few rows of column a and b might look like:

A___________B
hboc______dds
jk________optg
hbv_______pl

FIRST:
I would like to be able to sort the rows by the character length in a column. So, it would look like this (if sorted by 1st column):

A___________B
jk_________optg
hbv________pl
hboc_______dds

Second.........

View 2 Replies View Related

Copy Next Cell Content

Feb 10, 2010

Cell A1 needs to contain the contents of A3 without the user having to go and type the entry in each time the next cell along changes.

For example, let's say that last week 1.81 was typed in A2. The user then had to go in to A1 and also type 1.81. This week 1.83 has been entered in A3 so the user will manually have to go in to A1 and type 1.83. Next week when something is entered in A4, the contents of A1 will again need to match the contents of A4 and so on for the next 52 weeks. We'd like a formula in A1 that automatically shows the contents of the next cell along as soon as the content exceeds Zero.

A1 A2 A3 A4 etc
1.81 1.81 1.83 0.00

View 7 Replies View Related

VBA To Copy Particular Webpage Content?

Jan 7, 2012

Copy the contents of a text file from a webpage?

For instance, from this page I only want the data in the text box, which can be selected by clicking the Highlight All button.

I've seen code to copy an entire page, but this does not capture the text box contents in this case.

View 9 Replies View Related

Copy Content From One Dropdown Box To Another

Feb 22, 2007

I have a combo-box in Sheet Number 1 filled with date. In all my other sheets there a empty combo-boxes. When the workbook opens I automaticly want to copy the content from the combo-box from Sheet 1 into all the other comboboxes in the other sheets. Is there an way to solve this problem with a minimum amount of loops?

View 2 Replies View Related

Copy The Formula To B3 Based On The Content Of A1?

May 16, 2013

I have created formulas in cells BB2 through BM2 (1-12). I would like to copy the formula to B3 based on the content of A1 (A1 can only be a number from 1-12, representing months).

Example, if A1=3, return the formula in BE2

Formula in BE2 =

=INDEX('1'!$B$2:$AR$2999,MATCH(INDIRECT("$A"&ROW()),'1'!$A$2:$A$2999,0),MATCH(INDIRECT(CHAR(COLUMN()+64)&"1"),'1'!$B$1:$AZ$1,0))

View 1 Replies View Related

Find Min Then Copy Cell Content

Jul 1, 2009

I have a list of values that are the following:

Column A: City Name
Column B: Distance to destination

Is there a command to find the minimum value in Column B and then copy the corresponding city name into a cell of my choosing.

View 2 Replies View Related

Copy Cell Content Between Sheets?

Sep 1, 2013

I want to copy cells content from the sheet1 column A to sheet2,I was tried by the function Sum but problem is some of cells which i tried copy have combination letters and numbers as content.

Maybe, specific things is because i wont copy cell A2 sheet1 to cell A2 sheet2.

View 1 Replies View Related

Copy Based On Content To The Left?

May 7, 2014

I would like to paste a formula down a column but it should only paste if there is text in the cell to the right of the column where I am pasting (i.e dragging the formula down).

View 1 Replies View Related

Macro - Filter And Copy Associated Content?

Jun 18, 2014

I am having a spot of bother with my spreadsheet, when trying to automate some functionality. Effectively what I am trying to do is...

- With a comprehensive Project Plan press a button that extracts the information of cells that are marked as Critical.

- This information would pull through onto a separate Dashboard sheet, so that those critical items can get flagged to the Project Team.

- The data cannot be copied as a complete table, as there are various columns of data that I do not require copying.

- I have tried recording a macro with me 'filtering' the project plan for critical items and then copying that data across.

- This however only returns the cells originally marked as Critical, it does capture any changes to cells outside of the range in the code.

So,
- In Column C of 'Project Plan' sheet, I have tasks marked as "Critical" or blank.

- I want to copy data of those 'Critical' rows of data, from Columns B,D,F,I

- This data is then to go into the 'Dashboard' sheet, in Columns B,C,E,F.

I embed the code below, from my feeble attempt:

[Code]......

View 12 Replies View Related

How Can I Copy Desired Cell Content

Jan 5, 2009

I'm using Excel 2007 and s/s is 325501 rows deep. It consists of series of ranges between 4 and 30 rows deep.

What I want to do is locate the next appearance of a name and copy its accompanying number.
Doing this manully is not feasible, given the large size of the s/s .

I enclose a small attachment showing what I am trying to achieve. For those who don't like opening attachments the wording in it is :

The desired objective is to place in column Q the next appearing number in column L of the name in column C.

The VLOOKUP formula in column Q presents the desired number but (problem!) presents a zero when next appearance = blank.

When this happens I want the formula/code to repeatedly lookup the next appearance until it finds a number.

Examples of where next numbers appear are given here in column R.

View 11 Replies View Related

Copy Content Variable In Formula

Oct 8, 2013

A
B

1
AAPL
MSFT

2
='C:Documents and SettingsSASTCMy DocumentsStock Data[AAPL.csv]AAPL'!E2
='C:Documents and SettingsSASTCMy DocumentsStock Data[MSFT.csv]MSFT'!E2

How should i COPY automatically "XYL" written as in formula (XYL.csv and XYL') comprehending with the top bar?

Tried "&C1&" but it`s not working.

View 9 Replies View Related

Copy Content To Hidden Sheet

Nov 24, 2006

I have a workbook, wich copies content from an overview sheet to different other sheets. that works fine, but if I try to hide the content-placeholder sheets, I can't copy my content anymore.

here the part where I get the error;

'OldValue contains the name of the "copy to" sheet as a string

Sheets(OldValue).Select

View 9 Replies View Related

Copy Email Content To Excel

Dec 10, 2009

I receive about 80-100 emails per week that are computer generated by one of our customers. It contains time entry data that needs to be processed for our internal system.

Today I copy paste the content (it is NOT an attachment!) to Excel and have a macro to decifer and organize the information.

Is there a way to automate the "copy-paste" process, that is, go to the inbox and process each email with a loop like method.
The process needs to be able to go through a Yahoo mail box as well as an Outlook mailbox, Do not know at this time if there is a difference between the two.

View 9 Replies View Related

Copy Cells Based On Content

Dec 20, 2006

I have a list of Marketing Product descriptions that I have to match to a list of system codes and was wondering if I can do this in excel.

Marketing Bumph (first Tab):
A B
1 Marketing Code Friendly description
2 XYZ1111 Offer 1
3 ABC111 Offer 2

System Info (real codes not marketing)
A B
1 Marketing Code Real Value
2 XYZ1111 GL321
3 ABC111 FF453

So what I want to end up with is:
A B C
1 Marketing Code Friendly description Real Value
2 XYZ1111 Offer 1 GL321
3 ABC111 Offer 2 FF453

View 3 Replies View Related

Copy Content Of Cells From Worksheet To Another

Jul 26, 2007

i would like the code that allows me to copy enything I typing in column a sheet1 to column a in sheet2

View 3 Replies View Related

Copy Textbox Content To Cell

May 28, 2008

I want to use a Login screen for a little "request-program" I made. Logging in works and when I log in as an administrator, an extra window pops up where I can add and remove new users (with pass). Users (column A) and passwords (column B) are located in a 'logins'-tab in my worksheet. Adding a new username works fine, but I don't seem to get the password next to the username. When adding a new name, the code searches for a blank cell in column A, adds the name and then sort the rows (so username and password still correspond). Usernames are filled out in a combobox (so you can select one to delete) and passwords in a textbox.

View 2 Replies View Related

Find Cell Content And Copy Row Into New Sheet

Apr 7, 2014

I have tried to these through formulas without success but i think i need VBA also which i am not very experienced.

I want to paste a list in the "InsertList" sheet. This list will only contain the word "Correct" or "False". From then on i need a way to search for the word "Correct" or "False" in the columnS P,Q,R,S,T,U,V.

e.g. If in the column "P" on the "InsertList" sheet the word "Correct" is found, i need that entire row from A to V to be copied onto it's destination, in this case "sheet1".

If the word "Correct" is found on the column "Q" on the "InsertList" sheet, the rows from A to V need to be copied in the Sheet2. And so on..

sheet1.png

Attachment: dropbox.com/s/vgs4kzhoa1pip0a/CopyRows.xltm

View 7 Replies View Related

Copy Content Of All Worksheets Onto One Total Sheet

Jan 13, 2009

I have 11 worksheets in one workbook, the last worksheet is a total page.

I'd like to run a macro that copies the information from each sheet and pastes it into the total sheet. My range on every sheet begins at A2, but the end of the range is unknown.

All I have so far is trying to loop to a new empty cell on the total page (coded in a module - is that right?):

View 8 Replies View Related

Macro To Copy Content From Cells Into One Cell

Oct 20, 2008

I have a question.

What code do I need to make the data that is in more cells to be shown as data in one cell ?
ex. A5 D5 to be shown as D2(in a new workbook)
1 1 11

And that for every row?

View 9 Replies View Related

VBA To Build Copy Statement From Cell Content

Aug 9, 2006

A single worksheet holds all the values I need to move to various worksheets in the destination workbook. The destination workbook is MASTER.XLS and is already open. The source workbook has various names.

I have the macro walking through each value in column E of the source worksheet. When a match occurs, the corresponding cell in column F has the destination worksheet name, the corresponding cell in column G has the destination cell address and column H has the destination value (string value).

I have dim statements for SheetName, CellAddr and CellVal ; all set for String. I have been playing with "Offset" as well as "Select"ing through the worksheet hierarchy to drive to the desired destination cell. All seem to be more work than necessary and none work properly.

What I am looking for is a set of macro statements that I can use as a "template" within the balance of the macro I have written. I would also happily accept recommendations about books that provide a step-by-step approach to learning the capabilities of Excel's VBA functions. I know from my limited programming background that there are many ways to do the same thing. I'd rather start with the most efficient rather than burn lots of hours experimenting.

View 2 Replies View Related

Conditional Copy / Paste Cell Content From One Sheet To Another

May 12, 2014

I need to copy a couple cells from sheet2,3 and 4 to sheet1 depending on value of cell a2 of respective sheets.

I have the basic code here, and what I think I'm missing is the adding row in sheet1.

The below codes can be all wrong by the way, YES, I do not have much knowledge in Macro.

[Code] .....

View 1 Replies View Related







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