Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Misc
Need to have data in one column
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="zvkmpw, post: 7404343"] I have below data in my excel sheet:-- Here's one way, assuming there are always three rows for each user, and that the data starts at Sheet1!A1. On another sheet, put this in A1: =INDEX(Sheet1!$A$1:$A$20,INT((ROW()+2)/3),1) and this in B1: =INDEX(Sheet1!$B$1:$D$20,INT((ROW()+2)/3),MOD(ROW()-1,3)+1) and copy down as far as needed. I used 20 for the number of rows in Sheet1; change the 20's in the formulas as needed for the maximum number of rows. When a cell is empty, the two formulas produce zero. If you need to avoid this, wrap the formulas this way: =IF(above_formula="", "", above_formula) Hope this helps getting started. [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Misc
Need to have data in one column
Top