Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default copy cell to another specific cell

I couldnt find my previous post to this but I am styill havin
problems!!

I have a product number in cell a22.

In cell d21 I have a lookup that looks to see if it has been complete
and will either return Y or N or blank.

In cell e25 the user can enter text to update the returned looku
value.

I would like them to be able to click a button that will copy the text
in cell e25 and paste this to the source of the lookup.

This other worksheet has the product number in column C and the tex
needs to be pasted in column V where the row is the row where th
product number is found.

If you need any more info please ask.

All your help is much appreciated

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,979
Default copy cell to another specific cell

To find the thread that you started yesterday, and read the responses,
you can search the Google archives:

http://groups.google.com/advanced_gr...ugroup=*excel*

Type your name in the author box

shanman_lmtd < wrote:
I couldnt find my previous post to this but I am styill having
problems!!

I have a product number in cell a22.

In cell d21 I have a lookup that looks to see if it has been completed
and will either return Y or N or blank.

In cell e25 the user can enter text to update the returned lookup
value.

I would like them to be able to click a button that will copy the text
in cell e25 and paste this to the source of the lookup.

This other worksheet has the product number in column C and the text
needs to be pasted in column V where the row is the row where the
product number is found.

If you need any more info please ask.

All your help is much appreciated.


---
Message posted from http://www.ExcelForum.com/



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default copy cell to another specific cell

Thank-you Deberah,

I'm stilll suck with the solution of my problem so if anyone can hel
please help me!!!!!

Many many thanks

--
Message posted from http://www.ExcelForum.com

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default copy cell to another specific cell

Adjusted for your new criteria:

Dim rng as Range
set rng = Worksheets("OtherSheet").Range("C:C").Find( _
Range("A22"))
if not rng is nothing then
Range("E25").copy Destination:=rng.offset(0,19)
Else
msgbox Range("A22") & " supplier no was not found"
End if


--
Regards,
Tom Ogilvy

"shanman_lmtd " wrote in
message ...
Thank-you Deberah,

I'm stilll suck with the solution of my problem so if anyone can help
please help me!!!!!

Many many thanks.


---
Message posted from http://www.ExcelForum.com/



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default copy cell to another specific cell

Tom that is fantastic. Thanks so much

--
Message posted from http://www.ExcelForum.com

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
Copy specific cell using multiple criteria Lise Excel Discussion (Misc queries) 2 October 26th 09 02:29 AM
Copy specific cell using Multiple criteria Lise Excel Discussion (Misc queries) 1 October 23rd 09 05:52 AM
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing Options Yuvraj Excel Discussion (Misc queries) 0 June 29th 09 11:20 AM
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing Yuvraj Excel Discussion (Misc queries) 0 June 26th 09 06:01 PM
copy text to specific cell Tattyfur Excel Discussion (Misc queries) 1 January 5th 06 05:21 PM


All times are GMT +1. The time now is 08:57 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"