Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default copy and paste to another sheet based in cell color

I am trying to write code which will automate a long process. If cells
in columns D or E are red(3) or gold(44), I want it to copy the info in
coulmn B (in the corresponding row)to another sheet called 'MP.' Is
there a way to do this?
Also, I thought I might note that the cells in columns D and E are red
or gold due to conditional formatting.
Thanks.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default copy and paste to another sheet based in cell color

It might be easier to just loop through each row and use the same conditions
to determine what to do.

(pseudo code)

For rw = 1 to lastrow
if cells(rw,4) = condition1 then
' your code
elseif cells(rw,5)=condition2 then
' your code
else
' anyother code you want
end if
next


for copying -
Sheets("MP").Range(????)=Sheets("MySheet").Range(r w,2)
or
Sheets("MP").Range(????).value=Sheets("MySheet").R ange(rw,2).value
or
Sheets("MP").Range(????).text=Sheets("MySheet").Ra nge(rw,2).text


the trick is to define lastrow, and to define the row to paste to...

write back if you need more...

--
steveB

Remove "AYN" from email to respond
"nat3ten" wrote in message
ups.com...
I am trying to write code which will automate a long process. If cells
in columns D or E are red(3) or gold(44), I want it to copy the info in
coulmn B (in the corresponding row)to another sheet called 'MP.' Is
there a way to do this?
Also, I thought I might note that the cells in columns D and E are red
or gold due to conditional formatting.
Thanks.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default copy and paste to another sheet based in cell color

Sorry... need more help. I'm new to the VBA world. Can you elaborate a
little more?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 230
Default copy and paste to another sheet based in cell color

Steve,

I can't answer but I want to clarify the user's intent: I think they are
talking about usging a cell format change to fire off some code ... and I
don't know of any event which will register that change.

Bill
"STEVE BELL" wrote in message
news:PXXye.27809$mr4.19841@trnddc05...
It might be easier to just loop through each row and use the same
conditions to determine what to do.

(pseudo code)

For rw = 1 to lastrow
if cells(rw,4) = condition1 then
' your code
elseif cells(rw,5)=condition2 then
' your code
else
' anyother code you want
end if
next


for copying -
Sheets("MP").Range(????)=Sheets("MySheet").Range(r w,2)
or
Sheets("MP").Range(????).value=Sheets("MySheet").R ange(rw,2).value
or
Sheets("MP").Range(????).text=Sheets("MySheet").Ra nge(rw,2).text


the trick is to define lastrow, and to define the row to paste to...

write back if you need more...

--
steveB

Remove "AYN" from email to respond
"nat3ten" wrote in message
ups.com...
I am trying to write code which will automate a long process. If cells
in columns D or E are red(3) or gold(44), I want it to copy the info in
coulmn B (in the corresponding row)to another sheet called 'MP.' Is
there a way to do this?
Also, I thought I might note that the cells in columns D and E are red
or gold due to conditional formatting.
Thanks.





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default copy and paste to another sheet based in cell color

The format change does not need to fire off the code. I was planning to
maunally run the marco once all formatting is in place. Thank you.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default copy and paste to another sheet based in cell color

First - please leave any previous messages in your replys. Makes it easier
to follow what has gone on before (my viewer is set to not display read
messages).

So let's walk through some code... note that any line with a ' represents a
note to the code.
Write back and let me know how it works. Also if you need more help...

"MySheet" is the name I will use to represent your data sheet (replace with
the actual name)

In your Conditional Format you indicate that you have 2 conditions.
For simplicity I'll call condtion1 as something like formula is = D1=
25
and condition 2 as something like formula is = E1 = 56

Using R1C1 notation
column D becomes = RC4= 25
column E becomes = RC5= 56

Note that Range("$D$5") = Cells(5,4)

================================================== ============
Sub TransfertoMP()
Dim rw as long, lrw as long, prw as long ' define variables for row
numbers

' this finds the last used row in column A
lrw = Sheets("MySheet").Cells(Rows.COUNT, "A").End(xlUp).Row

' loop from 1st row to last row
For rw = 1 to lrw
' If cell in Column D = condition1
if cells(rw,4) = 25 then


' copy cell in MP column B to MP
Sheets("MP").Cells(prw,2) = Sheets("MySheet").Cells(rw,2)

' if cell in column E = condition2
elseif cells(rw,5)=56 then

' find first empty row on "MP"
prw = Sheets("MP").Cells(Rows.COUNT, "A").End(xlUp).Row + 1

' copy cell in MP column B to MP
Sheets("MP").Cells(prw,2) = Sheets("MySheet").Cells(rw,2)

' this one is only if you want a third option of something to do
else
' any other code you want
end if
next

End Sub
======================================

--
steveB

Remove "AYN" from email to respond
"STEVE BELL" wrote in message
news:PXXye.27809$mr4.19841@trnddc05...
It might be easier to just loop through each row and use the same
conditions to determine what to do.

(pseudo code)

For rw = 1 to lastrow
if cells(rw,4) = condition1 then
' your code
elseif cells(rw,5)=condition2 then
' your code
else
' anyother code you want
end if
next


for copying -
Sheets("MP").Range(????)=Sheets("MySheet").Range(r w,2)
or
Sheets("MP").Range(????).value=Sheets("MySheet").R ange(rw,2).value
or
Sheets("MP").Range(????).text=Sheets("MySheet").Ra nge(rw,2).text


the trick is to define lastrow, and to define the row to paste to...

write back if you need more...

--
steveB

Remove "AYN" from email to respond
"nat3ten" wrote in message
ups.com...
I am trying to write code which will automate a long process. If cells
in columns D or E are red(3) or gold(44), I want it to copy the info in
coulmn B (in the corresponding row)to another sheet called 'MP.' Is
there a way to do this?
Also, I thought I might note that the cells in columns D and E are red
or gold due to conditional formatting.
Thanks.





  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default copy and paste to another sheet based in cell color

This doesn't seem to work. Maybe I should give more background:
-I have 2 sheets: 'Mgmt Rev' and 'MP'
-If any rows in column F of 'Mgmt Rev' have: "FFP", "Conceptual",
"SOTA", "Very High", "0-50%", "Extreme", "New", "Poor", "Prewired",
"None", "Very High", "1", or "0-25%" then I want column D of that row
to be copied to coulmn B of sheet 'MP'

Is this possible?

Thanks for your help!


Orig email:
First - please leave any previous messages in your replys. Makes it
easier
to follow what has gone on before (my viewer is set to not display read

messages).


So let's walk through some code... note that any line with a '
represents a
note to the code.
Write back and let me know how it works. Also if you need more help...



"MySheet" is the name I will use to represent your data sheet (replace
with
the actual name)


In your Conditional Format you indicate that you have 2 conditions.
For simplicity I'll call condtion1 as something like formula is =
D1=
25
and condition 2 as something like formula is = E1 = 56


Using R1C1 notation
column D becomes = RC4= 25
column E becomes = RC5= 56


Note that Range("$D$5") = Cells(5,4)


==============================*=================== ===========*==
Sub TransfertoMP()
Dim rw as long, lrw as long, prw as long ' define variables for
row
numbers


' this finds the last used row in column A
lrw = Sheets("MySheet").Cells(Rows.C*OUNT, "A").End(xlUp).Row


' loop from 1st row to last row
For rw = 1 to lrw
' If cell in Column D = condition1
if cells(rw,4) = 25 then


' copy cell in MP column B to MP
Sheets("MP").Cells(prw,2) = Sheets("MySheet").Cells(rw,2)


' if cell in column E = condition2
elseif cells(rw,5)=56 then


' find first empty row on "MP"
prw = Sheets("MP").Cells(Rows.COUNT, "A").End(xlUp).Row + 1


' copy cell in MP column B to MP
Sheets("MP").Cells(prw,2) = Sheets("MySheet").Cells(rw,2)


' this one is only if you want a third option of something to
do
else
' any other code you want
end if
next


End Sub
==============================*========


--
steveB


Remove "AYN" from email to respond

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default copy and paste to another sheet based in cell color

I am not good with arrays so I would put your list in a table of a hidden
sheet
Say this table is Worksheets("Sheet3").Range("A1:A13")

' This will copy the entire column
================================================== =====
Dim x as Long, rw as Long

x = 0
For rw = 1 to 13
x = worksheetfunction.countif(Worksheets("'Mgmt Rev").Columns(6) + X
Next

If x = 0 then
MsgBox "No matches found"
Else
Worksheets("'Mgmt Rev").Columns(4).Copy _
Destination:= Worksheets("MP").Cells(1,2)
end if
======================================

If you want to do it cell by cell

Dim x as Long, rw as Long, lrw1 as Long, lrw2 as Long

x = 0
lrw1 = Worksheets("Mgmt Rev").Cells(Rows.COUNT, "F").End(xlUp).Row

For rw = 1 to lrw1
If worksheetfunction.countif(Worksheets("Sheet3").Col umns(1) 1 then
lrw2 = Worksheets("MP").Cells(Rows.COUNT, "B").End(xlUp).Row + 1
Worksheets("MP").Cells(lr2,2) = Worksheets("'Mgmt Rev").Cells(rw,4)
end if
Next

--
steveB

Remove "AYN" from email to respond
"nat3ten" wrote in message
ups.com...
This doesn't seem to work. Maybe I should give more background:
-I have 2 sheets: 'Mgmt Rev' and 'MP'
-If any rows in column F of 'Mgmt Rev' have: "FFP", "Conceptual",
"SOTA", "Very High", "0-50%", "Extreme", "New", "Poor", "Prewired",
"None", "Very High", "1", or "0-25%" then I want column D of that row
to be copied to coulmn B of sheet 'MP'

Is this possible?

Thanks for your help!


Orig email:
First - please leave any previous messages in your replys. Makes it
easier
to follow what has gone on before (my viewer is set to not display read

messages).


So let's walk through some code... note that any line with a '
represents a
note to the code.
Write back and let me know how it works. Also if you need more help...



"MySheet" is the name I will use to represent your data sheet (replace
with
the actual name)


In your Conditional Format you indicate that you have 2 conditions.
For simplicity I'll call condtion1 as something like formula is =
D1=
25
and condition 2 as something like formula is = E1 = 56


Using R1C1 notation
column D becomes = RC4= 25
column E becomes = RC5= 56


Note that Range("$D$5") = Cells(5,4)


==============================*=================== ===========*==
Sub TransfertoMP()
Dim rw as long, lrw as long, prw as long ' define variables for
row
numbers


' this finds the last used row in column A
lrw = Sheets("MySheet").Cells(Rows.C*OUNT, "A").End(xlUp).Row


' loop from 1st row to last row
For rw = 1 to lrw
' If cell in Column D = condition1
if cells(rw,4) = 25 then


' copy cell in MP column B to MP
Sheets("MP").Cells(prw,2) = Sheets("MySheet").Cells(rw,2)


' if cell in column E = condition2
elseif cells(rw,5)=56 then


' find first empty row on "MP"
prw = Sheets("MP").Cells(Rows.COUNT, "A").End(xlUp).Row + 1


' copy cell in MP column B to MP
Sheets("MP").Cells(prw,2) = Sheets("MySheet").Cells(rw,2)


' this one is only if you want a third option of something to
do
else
' any other code you want
end if
next


End Sub
==============================*========


--
steveB


Remove "AYN" from email to respond


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
Need code to copy and paste based on cell address. GoBow777 Excel Discussion (Misc queries) 1 July 13th 08 07:24 AM
Copy from one Sheet and paste on another sheet based on condition Prem Excel Discussion (Misc queries) 2 December 24th 07 05:05 AM
copy/paste from excel to word including cell color robr Excel Discussion (Misc queries) 0 September 12th 07 03:41 PM
Copy/Paste based on cell content. Hugh Askew Excel Programming 2 April 25th 04 01:06 PM
Copy/paste based on adjacent cell contents Ozbobeee Excel Programming 3 August 9th 03 06:57 AM


All times are GMT +1. The time now is 10:04 PM.

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

About Us

"It's about Microsoft Excel"