check once again :) Regards Mandeep Private Sub Worksheet_Change(ByVal Target As Range) On Error Resume Next ' MsgBox Target.Value2 If Target.Column = 1 Then Target.Offset(0, 1).Select ActiveSheet.Pictures.Insert("C:\Users\Mandeep.baluja\Desktop\a\" & Target.Value2 & ".jpg").Select ActiveSheet.Pictures.Insert("C:\Users\Mandeep.baluja\Desktop\a\" & Target.Value2 & ".jpeg").Select With Selection.ShapeRange .Height = Target.Offset(0, 1).Height .LockAspectRatio = msoFalse .Width = Target.Offset(0, 1).Width .Line.Visible = msoTrue .Line.Weight = 0.25 End With Target.Select End If
If Target.Value = "" Then For Each s In ActiveSheet.Shapes MsgBox s.TopLeftCell.Address MsgBox Target.Offset(0, 1).Address If Not Intersect(Target.Offset(0, 1), s.TopLeftCell) Is Nothing Then s.Delete End If Next s End If End Sub On Monday, August 3, 2015 at 6:21:28 PM UTC+5:30, prkhan56 wrote: > > Thanks Mandeep...for the code. > One small issue > I want the respective picture to be deleted > Now if I delete any value in Col A then it deletes all the pictures. > Can you please rectify. > If the value in Col A is deleted then only the respective pictures in Col > B should be deleted .. and not all the pictures > > Thanks once again. > > On Mon, Aug 3, 2015 at 4:19 PM, Mandeep Baluja <rocke...@gmail.com > <javascript:>> wrote: > >> check this out !! >> >> >> Private Sub Worksheet_Change(ByVal Target As Range) >> On Error Resume Next >> ' MsgBox Target.Value2 >> If Target.Column = 1 Then >> Target.Offset(0, 1).Select >> ActiveSheet.Pictures.Insert("C:\Users\Mandeep.baluja\Desktop\a\" >> & Target.Value2 & ".jpg").Select >> ActiveSheet.Pictures.Insert("C:\Users\Mandeep.baluja\Desktop\a\" >> & Target.Value2 & ".jpeg").Select >> With Selection.ShapeRange >> .Height = Target.Offset(0, 1).Height >> .LockAspectRatio = msoFalse >> .Width = Target.Offset(0, 1).Width >> .Line.Visible = msoTrue >> .Line.Weight = 0.25 >> End With >> Target.Select >> End If >> >> If Target.Value = "" Then >> For Each s In ActiveSheet.Shapes >> 'MsgBox s.TopLeftCell.Address >> 'MsgBox s.BottomRightCell.Address >> If Not Intersect(Range("B1:B10000"), s.TopLeftCell) Is Nothing Then >> s.Delete >> End If >> Next s >> End If >> >> End Sub >> >> >> Regards, >> Mandeep baluja >> >> >> -- >> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s >> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ >> https://www.facebook.com/discussexcel >> >> FORUM RULES >> >> 1) Use concise, accurate thread titles. Poor thread titles, like Please >> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice >> will not get quick attention or may not be answered. >> 2) Don't post a question in the thread of another member. >> 3) Don't post questions regarding breaking or bypassing any security >> measure. >> 4) Acknowledge the responses you receive, good or bad. >> 5) Jobs posting is not allowed. >> 6) Sharing copyrighted material and their links is not allowed. >> >> NOTE : Don't ever post confidential data in a workbook. Forum owners and >> members are not responsible for any loss. >> --- >> You received this message because you are subscribed to a topic in the >> Google Groups "MS EXCEL AND VBA MACROS" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/excel-macros/W2CtEqVFNXA/unsubscribe. >> To unsubscribe from this group and all its topics, send an email to >> excel-macros...@googlegroups.com <javascript:>. >> To post to this group, send email to excel-...@googlegroups.com >> <javascript:>. >> Visit this group at http://groups.google.com/group/excel-macros. >> For more options, visit https://groups.google.com/d/optout. >> > > > > -- > > *Rashid Khan* > > *Senior Trainer* > > > > *ExecuTrain* > > *AmanatSoft* > > *Corporate Training* > > *Software Development* > > > > PO Box: 26977, Dubai, UAE > > Tel: +97143374888, Fax: +97143374889, *Mob: +971(55)7490756 – > +971(50)2323657* > > www.executrain.ae | www.executrain.com/dubai | *www.amanatsoft.com* > -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Jobs posting is not allowed. 6) Sharing copyrighted material and their links is not allowed. NOTE : Don't ever post confidential data in a workbook. Forum owners and members are not responsible for any loss. --- You received this message because you are subscribed to the Google Groups "MS EXCEL AND VBA MACROS" group. To unsubscribe from this group and stop receiving emails from it, send an email to excel-macros+unsubscr...@googlegroups.com. To post to this group, send email to excel-macros@googlegroups.com. Visit this group at http://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout.