Mirroring Vertical Data Horizontally

Aug 20, 2008

I have one spreadsheet in which data was inserted vertically, and in order to move it to SQL, i would like to first mirror it horizontally in a 2nd spreadsheet (the reason i want to mirror it and not just copy the data is that the information in the first sheet changes dynamically).

So i figured out the basic function - (=sheet1!B0), but doing this on more than a 400 cells could be a problem. So my question is, how can i make, and lets take an example, cells A1 through I1 (in spreadsheet2) mirror A1 through A9 (in spreadsheet1), without editing functions cell by cell?

View 6 Replies


ADVERTISEMENT

Move Data From Vertical Column To Line Up Horizontally

May 20, 2008

How do I move data that is in a vertical column to line up horizontally (in separate columns, but same row)? For example, take an address:

Name
Address
City/St
Zip

How do I get it to go from that format to this format?

Name Address City/St Zip

View 9 Replies View Related

Excel 2007 :: Vertical Filter Instead Of Horizontally?

Jan 10, 2013

Is there any tool, or something else which can filter vertical rec

A1B1C1D1E1F1G1H1I1J1K1L1M1N1O1
ABCABCABCABCABC

I have pick the column C+F+I+L+O means i need to filter C in vertically,

View 1 Replies View Related

Referencing Vertical List Horizontally With Gap In Cells?

Mar 11, 2013

I am trying to reference a vertical list on another sheet, in a horizontal list every 3 cells.

Have attached an example example.xls

View 4 Replies View Related

Dragging Formula Horizontally While Referencing Vertical?

Oct 21, 2012

Im working on a financial forecast in ecxel and I'm trying to drag a formula from left to right, while referencing horizontal cells from a different tab:

Specifically, I have created a "loan schedule" which shows 12 monthly interest payments starting in cell B46 and ending in cell B57.

In a separate tab labelled "Balance Sheet", I would like to show the first interest payment ('loan schedule'!B46) in cell C28. Next, I would like to select the cell and drag it to the right so that the remaining 11 interest payments will be transferred into D29, E29, F29 etc. Unfortunately,the spreadsheet doesn't reference to the vertically listed interest payments from the loan schedule but instead references the cell to the right of the interest payment. Using "$" seems to be of no support.

View 9 Replies View Related

Vertical Lookup To Remove Duplicates And Return Unique Values Horizontally?

Mar 3, 2014

In column CT between rows 11:210 is the vertical data that includes duplicates. I am looking to create a formula that can lookup each value between CT11:CT210 and return only the unique values horizontally starting in cell CW9 and onwards.

Example: CT11:CT14 looks like
5x20
6x4
5x20
5x8
and so on and so forth..

I would then like this formula to return the above data (which goes all the way to CT210) in this format starting in cell CW9 - 5x20 then CX9 - 6x4 and finally CY9 - 5x8.

View 4 Replies View Related

Autofill Vertical List Horizontally With 2 Blank Cells In-between Each List Item

Feb 14, 2014

I have a list in column L2:L352. I would like to be able to start at AD2 and drag horizontally so that AD2 = L2, AE2 = <BLANK>, AF2 = <BLANK>, AG2 = L3, AH2 = <BLANK>, AI2 = <BLANK>, AJ2 = L4, etc.... until L352 has been autofilled.

View 2 Replies View Related

Transpose And Consolidate Data Horizontally To Vertically?

Jun 4, 2014

In the attached spreadsheet, I have the original data display horizontally (sheet2). Col A is Patient #. The header in row 1 are the test codes. Each patient took only 1 test and have result reported either neg, pos, pending or not eval. How do I transpose the header and have the test results consolidated in 1 column accordingly as display in sheet 3.

View 4 Replies View Related

VBA Or Formula To Summarize Data Horizontally Into A Table?

Feb 11, 2013

Macro or formula to build a table from a data.

The data is in the following format in 4 columns: A (Customers' names), B(type of transactions: invoice,payment, Credit,Check), C (date), D(Amount).

Data is for the whole year by monthly.

I would like to build a table like this:

Column (A) 10 names of customers and in next 12 columns by month amounts and types of transactions.

View 1 Replies View Related

Multiple Rows With Different Week Endings - Spread Data Horizontally

May 6, 2014

I have data in columns E through J under the headings of Monday-Saturday (E is Monday, F is Tuesday...J is Saturday). Then out to the left of the data, in column A, I have the week ending date (using Sunday as the last day of the week) which corresponds to the data under each day. There are multiple rows with different week endings but all the data is under columns E-J with the week endings in column A. So for instance, on row 13 the week ending in column A is 12/22/2013 (a Sunday) which means the corresponding data in the same row under columns E-J (the Mon-Sat columns) belong to 12/16/2013 (the Monday in the week ending on 12/22/2013), 12/17/2013 (the Tuesday in that week), 12/18/2013...and so on and so forth until 12/21/2013 which is Saturday in the week ending of 12/22/2013. Lastly, out to the right starting in column N and going horizontally out to column FD (will go out further as more days are added) I have the specific dates by day, it starts with 12/16/2013 and goes on incriminating by 1 day at a time until the end of all the dates included in the data (which at this point so happens to be 5/11/2014).

What I need done now is to take all the data which currently sits in columns E-J (the Monday-Saturday columns) and copy and paste it out under the correct specific date column that it belongs to starting in column N (going all the way out to FD) based on the week ending in column A. So with row 13 since the week ending in column A is 12/22/2013 the data in columns E-J needs to get pasted to row 13 columns N-S, then the same thing for row 14, except the week ending in column A row 14 is 1/5/2014 so the data in columns E-J row 14 needs to get pasted to columns AB-AG (AB is 12/30/2013...and AG is 1/4/2014). Below is the loop I came up with that accomplishes this, but for the reasons already stated.

Code:
Sub newtest()
Sheet2.Unprotect
Dim drd As Long
Dim rrd As Long
drd = 13
rrd = 14
Do Until IsEmpty(Cells(drd, 1).Value)

[Code] ..........

View 8 Replies View Related

Mirroring Rows

Dec 29, 2009

I currently have everything on one worksheet, but wish to add more sheets that will deal with the same rows (students) but will contain different data in some (but not all of) the columns. The problem is this:

I can see how to have Sheet2 update from Sheet1 normally. I cannot see how to have Sheet2 update from Sheet1 when I insert rows in the middle of my data so that I can insert new students into their classes. Can I have Sheet2, 3 etc all manage rows based on Sheet 1 even with inserts?

View 2 Replies View Related

VBA For Mirroring Spreadsheet?

Jul 29, 2014

I have a spreadsheet (Sheet1) that I am currently trying to mirror onto another spreadsheet (Sheet2) within the same workbook. I've tried to accomplish this task with a regular excel formula but, the excel formulas are not dynamic enough to account for the adding/deleting of rows. Sheet2 needs to mirror Sheet1 in the sense that all cells on Sheet1 that contain a value must show up on sheet2 in the same format. However, sheet2 also contains formulas that do not/are not needed on sheet 1. Sheet2 needs to be dynamic enough to expand/contract with the adding/deleting of rows on sheet1 but, also needs to contain formulas that are not overwritten in said expanding of information.

One spreadsheet (Sheet1) sometimes goes out to a client and can not contain cost information. However, the cost info is needed on Sheet2 for some of the formulas I need to run.

View 1 Replies View Related

Mirroring Named Ranges

Aug 25, 2009

The worksheet contains 20 different datasets which are divided into separate 30 x 10 grids, all of which help comprise a larger 300 x 20 grid. I have defined each smaller grid/dataset as its own named range. Originally the entire dataset started in A1, but I am shifting it dataset down by 40 lines to create space to work at the top of my workbook.

I am wanting to create a data validation list in A1, then have cells A3:J32 populate with the named range I select in A1. However I also want this populated dataset at the top of the sheet to be a mirror -- not a copy.

Therefore once I have the data in my range available A3:J32, anything I manipulate would be mirrored in the original range in the lower portion of the workbook.

View 4 Replies View Related

Mirroring Worksheets From A Master Template

Aug 10, 2009

I have a workbook that will have multiple sheets that I wish to have the exact same formatting, however, the data on each sheet may vary.

I want to be able to use a "Master Sheet" to make all formatting (ie. cell size, text alignment, font size/style) changes and have the other sheets automatically update.

I do not want this to affect or interfere with the data.

The reason is that some workbooks may end up with a large amount of worksheets and when I want to make a change to cell sizing or alignment I don't want to have to go through all of them to do this.

View 12 Replies View Related

Mirroring Vectors - Array Function

Jun 21, 2013

Any way with standard excel array functions to achieve a mirroring of a vector? I would like to use it in further calculations, thus a cell-by-cell OFFSET(.) solution unfortunately does not work for me.

So what i need is basically that

a

b

c

becomes

c

b

a

(thus being projected by a matrix

0
0
1

0
1
0

1
0
0

)

as an array function.

View 3 Replies View Related

Converting Vertical Data To Horizontal For Varying Data - Large Amount

Jan 20, 2009

I have a one column spreadsheet. The column contains this data:

1 Name
2 Address
3 City
4 State
5 Zip
6 Telephone
7 Fax
8 URL
9
10
11 Name
12 Address
13 City
14 State
15 Zip
16 Phone
17 URL
18
19 Name
20 Address ... and so on

Where there may be one or two blank rows between the individual records and where there may or may not be a Fax number (or row) in the record.

I am trying to convert this data to a horizontal column format - which works fine if I do a copy/paste special/transpose. However I have to do this for 1,800 records and cannot figure out how to do this reliably.

I gave the above illustration to simplify but, actually this is a two column spreadsheet with individual row labels for every record using the above terminology. In other words the above text is in the first column and the data is in the second. Just thought I'd mention in case there was a way to do some kind of if/then formula.

View 9 Replies View Related

Converting Horizontal Data To Vertical Data With Multiple Rows?

Sep 8, 2009

reformat a table in which data for each named person is presented in one row with mutiple columns into a table in which each named person has multiple rows and one column of data. The solution to to this has eluded me so far.

The attached example shows before and after.

View 6 Replies View Related

Macro - Vertical Data Into Horizontal Data At Certain Interval?

May 28, 2012

I'm trying to rearrange vertically aligned data so that they are horizontal. But at the same time, I need this macro at an interval.

To give you an example,

Mr. Yang Xin 221-421-5123 Male College Grad
Ms. Taylor Cindy 534-123-5512 Female Uni Grad
In this case, we need the data to be arranged this way.
Mr. Yang Xin 221-421-5123 Male College Grad Ms. Taylor Cindy 534-123-5512 Female Uni Grad

Could you write me a macro?

View 5 Replies View Related

Convert Vertical Data To Horizontal For Varying Data?

Dec 11, 2012

I have a data which contains:

A B
1 Name: A
2 Address: NY
3 Gender:Male
4 Cell Numbers: 123

[Code].....

I know that this has been asked a million times, but I need the new table in a new sheet (which is sheet 2 and also I skip the Cell Phone numbers data).

View 2 Replies View Related

Sum Horizontal Data In Vertical Summary Where Data Matches?

Jul 9, 2014

I have a page of data that i need to summarise/calculate, i thought sumif would be the correct formulae but i can't get it to work...

Sheet 1 - Data Recomds Emp Name, Weeks 1-52 showing no of hours to adj
Name
WK1
WK2
Wk3
WK4
WK5
WK6

Oliver
-1.5

[Code] .....

Sheet 2 - Summary by month - to Calculate the no of hours for the period per employee

Name
Month 1

Avery
Require Sum for employee Avery Wk 1-4

[Code] ..........

View 5 Replies View Related

Excel 2007 :: Clicking Cells To Change Colour Format And Mirroring

Feb 24, 2012

(Using Excel 2007)

What would be the quickest and most efficient way of doing the following:

Example

Sheet 1: clicking once, twice, three times in the following cells to change the fill to Red, Yellow, Green respectively (in Row 22, COLUMNS E H K N Q T W Z AD AG) and mirrorring this format/fill on:

Sheet 2: , mirror the selected fill on sheet1 in E22, H22 , K22 in in E3:N3 respectively example E22 (sheet1) is mirrored now in E3 (sheet 2); H22 (sheet 1) is mirrored in F3 (sheet2) etc etc.

I have 35 tabs formatted in the same way - each tab, as with Sheet 1 is linked to a different row on sheet 2 in the same range as is sheet 1 and would need to replicate the mirorring on Sheet 1 to each of the other 34 tabs.

View 9 Replies View Related

2 Input Vertical Ranges Need Formulas To Output 2 Vertical Summary Ranges

Mar 7, 2013

I have two vertical ranges that I need summarized into 2 adjacent vertical ranges.

"
A B C D
| SUMMARY
model qty| modelqty
1 4.12922.0000| 4.12952.2000
2 2.000012.1250| 2.000025.1250
3 4.12929.0000| 318.0000
4 318.0000|
5 4.1291.2000|
6 213.0000|
"

A1:A6 is my SKU's model number B1:B6 is my inventory C1:C6 should contain formulas that result in a summary of the models D1:D6 should contain formulas that result in a sum of the inventory count for each model

View 1 Replies View Related

Bar Graph With Values On Left Vertical Axis And Percentages On Right Vertical Axis

Jan 19, 2012

how do you create a graph with a field such as vendors on the X-axis, but with dollar values spent on the left side of the y-axis and percentage of total dollars spent on the right side vertical axis?

View 3 Replies View Related

Arranging Vertical Data To Horizontal

Dec 25, 2013

I have not found a suitable solution for arranging vertical data horizontally using VBA

I have number of data in column B arranged vertically in sheet1 how can we arrange the data in sheet 2 column B row 3 horizontally.

The vertical data keeps increasing when new data is added, so VBA code should search to the last line in Sheet1 column B.

All duplicate entries should not be repeated when arranging horizontally.

View 9 Replies View Related

VLookup To Sort Vertical Data

Jun 9, 2014

I have a very large Spreadsheet (time Sheet Report) that is very messy, how to reorganize the data properly.

We have employees that worked multiple shifts and our system record all their punches. However the system list the data in a vertical position, but I need it to be display horizontally. But there is another problem, there is some employees that did not punch for lunch and would like to add the 30 minutes lunch for only those that worked 8 hours shift.

Attached is a sample : Sample.xls‎

View 2 Replies View Related

Convert Data Horizontal To Vertical

Sep 5, 2009

i have a data in columns and would like to convert into rows

e.g.
11 A B C D E F G H
22 1 2 3 4 5 6 7 8
33 2 3 4 5 6 7 8 9
44 3 4 5 6 7 8 9 0

and result should be
A 22 1
A 33 2
A 44 3
B 22 2
B 33 3
B 44 4
C 22 3
C 33 4
C 44 5
and so on ..

View 6 Replies View Related

SUMIFS - How To Sum Data Using Both Horizontal And Vertical

Jul 20, 2012

I have a huge data table, and I just can't seem to find a way to sum the numbers the way I want.

Here's an example of the table:

___ A B C A B C A B C A B C A B C
Jan 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
Jan 3 4 5 6 3 4 5 6 3 4 5 6 3 4 5
Jan 3 4 5 6 3 4 5 6 3 4 5 6 3 4 5
Jan 3 4 5 6 3 4 5 6 3 4 5 6 3 4 5
Feb 3 4 5 6 3 4 5 6 3 4 5 6 3 4 5
Feb 6 3 4 5 6 3 6 3 4 5 6 3 6 3 4
Feb 6 3 4 5 6 3 6 3 4 5 6 3 6 3 4
Feb 6 3 4 5 6 3 6 3 4 5 6 3 6 3 4
Feb 6 3 4 5 6 3 6 3 4 5 6 3 6 3 4
Mar 6 3 4 5 6 3 6 3 4 5 6 3 6 3 4
Mar 6 3 4 5 6 3 6 3 4 5 6 3 6 3 4
...
...

But, in essence, I need to sum together every value that's in January AND is in a column labeled "A".

I could just write up a bunch of "sumif=" functions but I feel like there's a simpler way.. I tried using "sumifs=" but I don't think it can handle horizontal AND vertical criteria...

View 14 Replies View Related

Transpose Vertical Data To Horizontal?

Apr 18, 2013

I have the attached worksheet that I would like to know how to move the data from Vertical to Horizontal

Is there a set function to do this or does it require a macro?

View 5 Replies View Related

Make Horizontal Data Go Vertical

Dec 13, 2005

a_____b____ c_____ d_____ e______ f______ g_____ h_____ i
1 - 12/1--| 385 -| 15000 -| --etc--|| --etc--|| --etc--|| --etc--|| --etc--|
2 - 12/5--| 256- | 20000 -|
3 - 12/6--| 356- | 11000 -|
4 - 12/5--| -89--| -1000 --|
5 - 12/9--| 500- | 9000 ---|

Where d1:d5 e1:e5 f1:f5 and g1:g5 h1:h5 i1:i5 all have similar data.

Is there a way to have the data from def and ghi fall in line underneath abc with the condition being that there has to be something in the cell?

View 10 Replies View Related

Moving Vertical Data To Horizontal

Apr 20, 2012

I need to do is to move data which is in 3 columns with multiple entries (ID) in first column to single entry in first column (ID) horizontally.

Currently three columns are ID, Code and Reply:

111 A D
111 B F
222 A I
333 B D
333 C F

What I would need is (ID, Code1, Reply1, Code2, Reply2):

111 A D B F
222 A I
333 B D C F

Is there a macro I could use for it?

View 1 Replies View Related







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