View Single Post
  #2   Report Post  
David of XL Plus David of XL Plus is offline
Junior Member
 
Posts: 19
Default

Quote:
Originally Posted by vsugadev View Post
Hi All, [I have attached same files]
I want to write a macro to Compare ENTRIE row in NEW_SHEET.xls.If any records present in OLD_Sheet.xls.Our macro should update Only Comments column [P:P] value in NEW_SHEET.xls status field.
================================================== ===============
IF (Any OLD_SHEET Record present in NEW_SHEET) then
{
Update NEW_SHEET.COMMENTS= OLD_SHEET.COMMENTS

}
Else
{
Print "NEW RECORD" in NEW_SHEET.COMMENTS
}
================================================== ===============
Thanks
Sugadev V.
Hi,

This can be achieved with nested loop in VBA.

For each Row

For each Cell

(Do Compare and Report Thing)

Next Cell

Next Row


Obviously you will need some unique identifier such as an account No. to match.

Educo