Copy Non-adjacent Columns At The Same Time
Mar 10, 2008
I am using this code to copy the cells from column C for the selected rows.
With Selection
.Columns("C").Copy
End With
How can I copy the corresponding cells in column "E" at the same time ? I think I need to use "Intersect" somehow ?
View 9 Replies
ADVERTISEMENT
Jan 5, 2014
I have a workbook with 30 worksheets. Each sheet has 84 rows of data (start in 15 columns (A to O). I would like to create a summary sheet that only shows the most important data from each sheet.
The summary sheet would have 12 lines of headers and formatted crap at the top.
The Summary sheet header columns would be:
Site (A), Date (B) Health (C), Status (D), Critical (E), Task (F),
Dependencies (G), Owner (H), T-Date (I), Task Date (J), Mitigation Date (I)
The data in the sheets are not in that order, of course.
That
1. puts the name of the sheet I am copying from in column A
2. the deadline date in Column B (that date is always in C10 of each worksheet)
3. and copies Cells from Column A,B,G,H,I,O in any row in which the value in A is not "good" into columns C through H. I would like to paste those rows into the summary sheet. I have code that loops through the sheets and rows in each sheet to find the rows to copy. I can copy cell values directly from the active sheet to the summary sheet, but because I am copying a cell at a time, it takes 7 minutes. Yes I am impatient :)
Here is the code snippet where the copying is done:
Dim sh As Worksheet 'current worksheet
Dim DestSh As Worksheet 'worksheet in which to paste summary
Dim Last As Long
Dim CopyRow As Long 'row to copy
Dim LastCopyRow As Long
[Code] ........
ExitTheSub:
Application.Goto Sheets("KMARollup").Cells(1)
End Sub
I think there must be a way to use ranges to build an array of cell values and paste only once but I am lost here.
View 2 Replies
View Related
Apr 15, 2013
I import a text file that displays outstanding parts orders. The order Number column only displays one number even if there are multiple parts ordered I.E. so if three parts are on order then the order number is displayed once with the other two underneath blank. I would like to filter the column that displays the amount of stock that is available so that even if the row has no stock but the other two have all three rows are displayed that reference the order number.
Example Screen
Example.jpg
View 5 Replies
View Related
Jan 8, 2009
I have a spreadsheet where I need to count the # of times the value 1 is in a row, but the columns that I need to check is every other column.
View 3 Replies
View Related
Jul 22, 2009
Please see the attached file. I would like to apply an auto-filter to the columns for "Food", "Animal" and "Value", but NOT to "Name", "Number" and "Description."
This would work fine if the columns I wanted to filter were all agacent to one another, but when i ctrl+click to select multiple ranges the auto-filter doesn't seem to want to apply. Any suggestions?
View 10 Replies
View Related
Nov 5, 2013
I am trying to use defined range names in a vlookup function. The target ranges contain non-adjacent columns. The formula wizard gives me an error msg "#value" and the vlookup returns #N/A.
View 2 Replies
View Related
Jan 24, 2008
I have got 5 columns. What i intend to do is to loop to the last data cell in column d,e and autofill it down from there till the last row in column a,b,c. What my code does now is to autofill the entire column c,d from the 1st cell and not from the last data entry cell.
Dim r As Range
Dim lRow As Long
lRow = WorksheetFunction.Max(Range("A65536").End(xlUp).Row, _
Range("B65536").End(xlUp).Row, Range("C65536").End(xlUp).Row)
Set r = Range("d1:e1")
r.AutoFill Range("D1:E" & lRow)
I had searched and tried dozens of variations but just can't get it right.
View 4 Replies
View Related
Jun 11, 2008
I need to print non-adjacent columns in my worksheet. (A:J, M). The cells need to be visible when one opens excel, this I cannot permanently hide them.
View 4 Replies
View Related
Apr 3, 2009
I am trying to find a formula that calculates the longest period from data in an adjacent cell.
The attached spreadsheet might better explain this
View 6 Replies
View Related
Apr 27, 2009
I need to know how to selec no-adjacent columns for the known_x's in the linest function:
Example:
'- A B C D E
1) 80 63 9 3 26
2) 80 63 9 3 21
3) 74 65 7 2 30
4) 74 65 7 2 20
5) 63 65 9 3 16
=LINEST(A1:A5,KNOW_X'S,TRUE,TRUE)
Is there any way to select for instance: column B and E as known_x's?
I heard about something where we can select total area and then choose which columns should be considered via "{column1, colum2}"..
That is all is missing for me to finish my project!!! Pls your help!!!
View 6 Replies
View Related
Nov 20, 2008
I want to total cells that have data in them across a row. I have a name in Column A and then in Columns C-Z I have data. In Column B I want Excel to scan across cells C-Z and if a cell has data in it (it will be text) I want it to add one to the total in cell B. Would CountIF do this with text involved?
View 7 Replies
View Related
Nov 21, 2009
I am looking for two formulas (col. B+C) in order to split every second value from Col. A into two adjacent columns. Empty cells, in col. A, should be ignored. The requested result is shown in green and red.
View 4 Replies
View Related
Jan 7, 2007
Pivot Tables. The structure and subject-content of cells B3:D14 (Block A) is identical to those of cells F3:H14 (Block B). I want a pivot table to treat the two Blocks as if they occupied the same three columns (e.g. B3:D26).
View 3 Replies
View Related
Apr 10, 2014
I am having data of codes in a and c column and the amount for the same code in b and d column. I want the sum of amount of codes in the two columns b and d, if the same code matches in the a and c column .
I am enclosing the excel file. Why a formula contains those things.
sumif.xlsx
View 14 Replies
View Related
Mar 14, 2014
How to do this or if there's even a formula or even a macro i could run to run this data.
I have three rows of data (29-31) from columns D to Q.
I would like to take D29 and add each of the values in the adjacent columns exactly once and sum up the value D thru Q
For example I'd like to return not just Sum(D29:Q29) but also Sum(D29:R29)+Q30, Sum (D29:R29) +Q31.
I guess that might be considered a 1X3 matrix & and 8X3 matrix, but I'm not really sure how to set up the return values for these equations nor how to return them very quickly.
View 1 Replies
View Related
Mar 14, 2014
I have three rows of data (29-31) from columns D to Q.
I would like to take D29 and add each of the values in the adjacent columns exactly once and sum up the value D thru Q
For example I'd like to return not just Sum(D29:Q29) but also Sum(D29:R29)+Q30, Sum (D29:R29) +Q31.
Macro that would add these values?
That is D29 + E29 or E 30 or E31 + F 29 or F 30 or F 31 + G 29 or G 30 or G 31... and on?
Even though I wrote "or" above, i would need the other values to be added in a separate calculation, until all possible permutations of D and the following 8 columns and 3 rows of data are exhausted.
View 1 Replies
View Related
Mar 19, 2014
I would like to highlight the rows in my spreadsheet where columns G and H both contain the text "Yes". I've tried conditional formatting and VBA but can't seem to get either to work for what I need.
View 3 Replies
View Related
Apr 22, 2014
I have a formula (below) where I want it to count the cells that contain a date that is less than or equal to today, but only when the adjacent cell is blank. The latter part of the formula works, but I'm struggling to tell it to only do the count when cells in column I are blank;
=IF('QS12'!I10:I3120="",COUNTIF('QS12'!H10:H3120,">="&TODAY()))
View 9 Replies
View Related
Nov 13, 2006
If I have formulas in A1, A5, A19, and A36, highlight them with goto, how do I move them into B1, B5, B19, and B36? Copying and pasting puts them in B1, B2, B3, and B4.
View 9 Replies
View Related
Nov 19, 2007
I have a fairly large spread sheet where I need to count the number of instances where the number in one column matches the number adjacent to it in a second column.
View 9 Replies
View Related
Jun 27, 2014
I have two sets of data from columns A:N (O is blank) & P:AC. Column A & P are account numbers. I want to compare columns A & P for exact matches, there will never be any duplicates in either of these columns by themselves. If there is a match I would like that entire row to align, if there is no match I would like a row to be inserted. I have attached a copy of a worksheet of what I am looking to have done.
View 2 Replies
View Related
Jul 10, 2014
I use Excel 2007.
I have a data set that tracks ingredients in chemical products. For example sake the chemical product is a mixed color, and the calculated ingredient is a primary color.
I need to calculate the quantity of two primary colors based on their percentage of the mixture.
Column A contains the mixed color names. Columns B and C contain the percentage of the primary in each mix.
I began tracking this data in January 2009. Each month I add 3 columns to the worksheet. The 1st column contains the monthly mixed color quantity used. The 2nd and 3rd columns contain the calculation of the two primary colors.
I need the formula to calculate the 12 month rolling total for each primary color. (For July 2014 I need to calculate July 2013 through June 2014)
A
B
C
E
F
G
H
I
[Code]...
View 3 Replies
View Related
Jul 14, 2012
Macro to find blank cells in column I , wherever it finds a blank cells , cell value in column F adjacent to blank cell gets copied in column I ......
View 3 Replies
View Related
Oct 27, 2008
I have following data in Sheet1
A1B1C1D1E1F1G1H1
5812643 1517
Now I want that the above values be pasted in 02 columns of Sheet2 as under:-
SHEET2
AB
58
126
43
1517
What Formula should I put in Cell A1 and A2 of Sheet2 to get the
desired result automatically.
View 9 Replies
View Related
Jan 11, 2010
I have three columns (A to C) with contineous data (# rows always variable).
I would manually type a number in a cell (S2) that would correspond with a number in Column A. What I would like the code to do is that it finds the number in column A and selects the whole range in column B and C starting from that row, and copies that whole selection to N10.
After that all the data in column N should be substracted with a value given in S3 and all data in column O with a value given in S4.
View 9 Replies
View Related
Feb 22, 2013
Code to enter the current date in column if the values are entered in the adjacent column's.
View 2 Replies
View Related
Jun 1, 2007
I am trying to use the DCOUNT function to count based on two different criteria in adjacent columns is this applicable.
Situation:
I have column B that contains initials and I have column C that contains a type (of store) so it'd look like this
jp RET
jp RTO
jb RET
ma RTO
Rn CI
ma Fur
tc CI
ma RET
jp RET
and I want to have a count of how many RET's there are for Initials JP ect
View 6 Replies
View Related
Dec 5, 2009
i had data in html format.i want the data to be splitted into columns in excel.
HTML FORMAT
Employee name
Emp id
johnabraham wesley peter neiljohn and so on....... 254800 254801 254802 254803
i tried copying the data from html to excel. Then applied text to columns but i m getting incomplete names from this step.
My problem is how would i get the full name in one Column(Column B) & the emp id in the next Column (COLUMN C).Column A will have the data copied from html page. The length of the employee name differs. The only saving tip is that the employee name will suffix with sno like
Johnabraham -1
254800
View 11 Replies
View Related
Aug 12, 2013
I want to copy A1 and C1 (there is data in A2), but when I copy it somewhere else, I want it to maintain the column space with NO data. Can I do this?
View 1 Replies
View Related
Aug 26, 2013
A sheet, compose of groups of 9 items and their corresponding qty. I need to have the same serial no. be commented on each items of the same group. I am doing in this mechanical way:
1. add comment of serial no. on the first item of group,
2. copy and paste, with paste special>>comments, on the remaining items of the same group,
3. Repeat this sequences on the other groups, which means hundreds.
Other than these tedious procedures, is there any better way?
View 7 Replies
View Related