Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default how do i move columns on one sheet to columns on another sheet

I have sheet one which is column "A" student's name columns "B thru K" are a
point system in each column (by 3 points either a score of 1, 2 or 3).
Column "L" is the total points summed across "B" thru "K". (a total of no
more than 30).

Sheet 2 is 5 columns with each column being worth 6 points. Column "A" is
25 thru 30 points, column "B" is 19 thru 24 points, column "C" is 13 thru 18
points, column "D" is 7 thru 12 points and column "E" is 0 thru 6 ponts.

I need column "L" on sheet one to move the students name on that row to
sheet 2 into the appropriate column based on his/her respective score.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 37
Default how do i move columns on one sheet to columns on another sheet

The formulas you want for columns A to E in Sheet2 a
=IF(AND(Sheet1!$L1=25, Sheet1!$L1<=30), Sheet1!$A1, "")
=IF(AND(Sheet1!$L1=19, Sheet1!$L1<=24), Sheet1!$A1, "")
=IF(AND(Sheet1!$L1=13, Sheet1!$L1<=18), Sheet1!$A1, "")
=IF(AND(Sheet1!$L1=7, Sheet1!$L1<=12), Sheet1!$A1, "")
=IF(AND(Sheet1!$L1=0, Sheet1!$L1<=6), Sheet1!$A1, "")

Cheers,
Rob


On 14-Dec-2009 19:20, vaughn01 wrote:
I have sheet one which is column "A" student's name columns "B thru K" are a
point system in each column (by 3 points either a score of 1, 2 or 3).
Column "L" is the total points summed across "B" thru "K". (a total of no
more than 30).

Sheet 2 is 5 columns with each column being worth 6 points. Column "A" is
25 thru 30 points, column "B" is 19 thru 24 points, column "C" is 13 thru 18
points, column "D" is 7 thru 12 points and column "E" is 0 thru 6 ponts.

I need column "L" on sheet one to move the students name on that row to
sheet 2 into the appropriate column based on his/her respective score.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to make columns in one sheet match columns from another sheet Zoe Hu Excel Discussion (Misc queries) 5 December 4th 07 06:53 PM
Help in code Steve G wrote to move data from 4 columns to 21 columns Steve G Excel Programming 9 August 2nd 07 02:43 PM
Q: Creating a macro to sort and group columns in a sheet according to another sheet [email protected] Excel Programming 0 January 8th 07 09:06 PM
copy different columns from sheet to other sheet p. panter Excel Programming 1 February 9th 06 05:23 PM
Can I add more columns to a spread sheet or is limit 256 columns Piper Excel Discussion (Misc queries) 4 October 9th 05 08:27 PM


All times are GMT +1. The time now is 06:00 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"