Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Based on other criteria, from two cells, I would like to move entire rows
from one sheet to another. There will be more than 7 so I'm thinking I would need to use a VLOOKUP as opposed to an IF. Something like: IF(AND(C1=1,AE5=1),MOVE ROW 5 TO SHEET5!ROW20. Is this possible? If it is can you move multiple adjacent rows? thanks for any help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() try Sub MoveRows() If Range("c1") = 1 And Range("ae5") = 1 Then Rows(5).Cut Sheets("Sheet5").Select ActiveSheet.Rows("20:20").Select ActiveSheet.Paste End If End Sub -- mudraker ------------------------------------------------------------------------ mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473 View this thread: http://www.excelforum.com/showthread...hreadid=537071 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is the only was to accomplish this by way of a macro?
"mudraker" wrote: try Sub MoveRows() If Range("c1") = 1 And Range("ae5") = 1 Then Rows(5).Cut Sheets("Sheet5").Select ActiveSheet.Rows("20:20").Select ActiveSheet.Paste End If End Sub -- mudraker ------------------------------------------------------------------------ mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473 View this thread: http://www.excelforum.com/showthread...hreadid=537071 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() you can not move rows, cells etc by using only formulas -- mudraker ------------------------------------------------------------------------ mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473 View this thread: http://www.excelforum.com/showthread...hreadid=537071 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't have much luck or experience with macros, so I was hoping to be able
to use formulas. Six months ago I didn't have any experience with formulas, and now except for the occasional problem like this I'm ok. So I'll give it a whurl. As I tried your suggestion I notices that I really need to match three criteria. Specifically one from sheet1!(g3) and two from sheet5!(c2:c81) and (ae2:ae81). Attempting to add the third criteria, and/or possibly the arrays, resulted in some type of error. Still possible? Any suggestions? Sorry to drag this out! Thanks for your help. "mudraker" wrote: you can not move rows, cells etc by using only formulas -- mudraker ------------------------------------------------------------------------ mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473 View this thread: http://www.excelforum.com/showthread...hreadid=537071 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() it is still possible just reply with exact details of what you need to acheive and under what conditions. If you need to get multiple results then list each one clearly as seperate steps Include workbook names, Sheet names, cell address eg a1, Row numbers, column numbers or letters, ranges of cells/rows etc. The way you laid it out in you original post is ok even -- mudraker ------------------------------------------------------------------------ mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473 View this thread: http://www.excelforum.com/showthread...hreadid=537071 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Moving a sheet from one Excel file to another? | Excel Discussion (Misc queries) | |||
Send entire workbook/current sheet pop-up box. | Excel Discussion (Misc queries) | |||
Moving rows to sequential position on another sheet | Excel Discussion (Misc queries) | |||
Copying multiple sheets from one book 2 another and undertake spec | Excel Discussion (Misc queries) | |||
Naming & renaming a sheet tab | Excel Worksheet Functions |