Are you sure ? i've been test and try the code, and it work for any other picture.
Did you know how that code work ? let me explain a little /*) //the code is in blue, and green is my comment /*'This code will only executed before you double clicking on any cells / ranges on sheet* *Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
**'If some error happen, just ignore it, ex: **picture file not found** ** On Error Resume Next**'The code will only working if target column is 1 or in otherwords = Column "A"**
**** If Target.Column = 1 Then'it will move the cursor to select the cell on column "B" to place the picture
**** Target.Offset(0, 1).Select'And load the picture from the respective folder with name as name on Cell Column A that you've clicked ****ActiveSheet.Pictures.Insert("C:\Product\Pictures\" & Target.Value2 & ".jpg").Select
'Then Resize, and make a border **** 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 'Reselect the cell that you clicked before **** Target.Select** ** End If** **End Sub* On 01/08/2015 3:33, Rashid Khan wrote:
Thanks for the quick response. It works only for 1.jpg and not for any other pictures. Kindly look into the code thanks once again.On Sat, Aug 1, 2015 at 12:00 AM, De Premor <d...@premor.net <mailto:d...@premor.net>> wrote:Here is the code, you can make changes or experiment with it Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) On Error Resume Next If Target.Column = 1 Then Target.Offset(0, 1).Select ActiveSheet.Pictures.Insert("C:\Product\Pictures\" & Target.Value2 & ".jpg").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 End Sub Rgds, [dp] On 01/08/2015 2:25, prkhan56 wrote:I am using Excel 2010 I have a problem as shown in the attached sample data In the directory C:\Product\Pictures I have many files with the names shown in Column A under the Code group eg: 1.jpg, 2.jpg ….and so on The size of inserted picture should be of the same height and width of the cell in Column B. I want a macro which when run should look up the Code number in Col A. viz: if code is 1 then it should put the pic in Column B of 1.jpg and so on an so forth If there is no value in Col A then it should do nothing otherwise put the respective pictures from C:\Product\Pictures. Any help would be really appreciated. A sample file is attached herewith TIA Rashid-- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wannabe? 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 <mailto:excel-macros+unsubscr...@googlegroups.com>. To post to this group, send email to excel-macros@googlegroups.com <mailto: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.-- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wannabe? 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+unsubscr...@googlegroups.com <mailto:excel-macros+unsubscr...@googlegroups.com>. To post to this group, send email to excel-macros@googlegroups.com <mailto: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. -- *Rashid Khan* *Senior Trainer* *ExecuTrain* *AmanatSoft* *Corporate Training* *Software Development* PO Box: 26977, Dubai, UAETel: +97143374888, Fax: +97143374889, *Mob: +971(55)7490756 – +971(50)2323657*www.executrain.ae <http://www.executrain.ae/>| www.executrain.com/dubai <http://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/discussexcelFORUM RULES1) 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 <mailto:excel-macros+unsubscr...@googlegroups.com>. To post to this group, send email to excel-macros@googlegroups.com <mailto: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.
-- 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.
Copy of Quotation - groups.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12