Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Help to copy notes from 1 sheet to another

I have 2 sheets in 1 excel file 500 rows need to make it so that if
Sheet1:ColB is the same as Sheet2:Colb then the Notes in
Columc:Sheet2 are displayed in sheet1ColumC

note that in most cases the infomation in Colb wont be in the same
order etc. and also a few records missing if this is the case i would
like it to be blank.

Cheers
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Help to copy notes from 1 sheet to another

In Sheet1 C1 enter the formula and copy that down

=IF(ISERROR(MATCH(B1,Sheet2!B:B,0)),"",INDEX(Sheet 2!C:C,MATCH(B1,Sheet2!B:B,0),0))

If this post helps click Yes
---------------
Jacob Skaria


"Mrbanner" wrote:

I have 2 sheets in 1 excel file 500 rows need to make it so that if
Sheet1:ColB is the same as Sheet2:Colb then the Notes in
Columc:Sheet2 are displayed in sheet1ColumC

note that in most cases the infomation in Colb wont be in the same
order etc. and also a few records missing if this is the case i would
like it to be blank.

Cheers

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default Help to copy notes from 1 sheet to another

Fire this macro while in sheet 1
Sub matchiteminothersheet()
On Error Resume Next
For i = 1 To Cells(Rows.Count, "b").End(xlUp).Row
Set x = Sheets("sheet2").Columns("b").Find(Cells(i, "b"), _
LookIn:=xlValues, LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False)
If Not x Is Nothing Then Cells(i, "c") = "Match"
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Mrbanner" wrote in message
...
I have 2 sheets in 1 excel file 500 rows need to make it so that if
Sheet1:ColB is the same as Sheet2:Colb then the Notes in
Columc:Sheet2 are displayed in sheet1ColumC

note that in most cases the infomation in Colb wont be in the same
order etc. and also a few records missing if this is the case i would
like it to be blank.

Cheers


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
Lotus Notes - Unable to Copy Paste Special in macro Joe Wildman[_2_] Excel Worksheet Functions 2 February 8th 09 09:43 PM
?? Email Excel sheet thru Lotus Notes Jaylin Excel Discussion (Misc queries) 1 October 16th 07 05:12 PM
??email excel sheet w Lotus notes Jaylin Excel Discussion (Misc queries) 3 October 12th 07 03:40 PM
relative sheet references ala sheet(-1)!B11 so I can copy a sheet. RonMc5 Excel Discussion (Misc queries) 9 February 3rd 05 12:51 AM
Notes move around the sheet Mervyn Thomas Excel Discussion (Misc queries) 2 February 2nd 05 11:42 PM


All times are GMT +1. The time now is 12:42 AM.

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"