*Hi siti Vi*
*
*
*Thanks for your reply .That was efficient*
*
*
*But i had a problem the order of the values may not be the same in all
sheets*
*
*
*for example:if "17" is in row 17 in sheet "A" it may be in row 20 in sheet
"B"*
*Your code works effectively if the order is same.You are comparing with
target.row.This may not be the same in all sheets.I will end up deleting the
other value.*
*
*
*How can we overcome this problem*
*
*
*Regards*
*L SUDHEER
*
On Sun, Oct 10, 2010 at 6:58 PM, siti Vi <villager.g...@gmail.com> wrote:

> Hi Lolla,
>
> try this code (written in Module of *Sheet A)
> *and let me know*
>
> Private Sub Worksheet_Change(ByVal Target As Range)
>
>    If Target.Cells.Count = 1 Then
>       If Target.Column = 1 Then
>          If IsEmpty(Target.Value) Then
>             Sheets("B").Cells(Target.Row, 2) = Target.Value
>             Sheets("C").Cells(Target.Row, 1) = Target.Value
>          End If
>       End If
>    End If
> End Sub
>
>
>
> kindest regards,
> siti Vi
> jakarta
>
>
>
> *
> On Fri, Oct 8, 2010 at 8:10 PM, sudheer lolla <sudheer1...@gmail.com>wrote:
>
>> Hi guys
>>
>> I Have a column "xyz"  which is there in every sheet of the workbook
>> and the column number in sheet A is 1 ,sheet B is 2,sheet C is 1
>>
>> If i delete a value from that column "xyz" in sheet A,the deleted cell has
>> to be deleted from these B,C sheets
>> But the vice-versa should not happen i.e Delete of a cell in column "xyz"
>> of sheet B or C should not delete from A
>> For me sheet A is a base sheet
>>
>>
>> "DELETE REFLECTS ALL SHEETS IS WHAT I NEEDED"
>>
>> I will be very thankful to this community if i get some answer.
>>
>> Thanks
>> sudheer.L
>>
>
>  --
>
> ----------------------------------------------------------------------------------
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> Like our page on facebook , Just follow below link
> http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wall&ref=ts
>



-- 
sudheer.L

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wall&ref=ts

Reply via email to