Dear All,
Thank you so much for your responses.
I would like 1 photo for each comment box - ie in the Fill Effect in the format comment options.
The idea is that I will have an information line for each of the 9,500 beneficiaries (previous figure of 13,000 has been revised). Below my sign off is a sample, and below that is the code. I have also attached a screen shot for further clarity.
Each line has the following columns : District, Sub-county, Parish Name, Parish No., Surname, First name, Photo Taken (Yes / No), Photo File Name, Full Name
The first letter of the District, plus the first letter of the Sub-county, plus the Parish Name, plus the Parish no., are used to generate a unique file name, designed to match the name of the actual photo file of the beneficiary.
The names manually given to the actual photo files are based on Windows Explorer multi-rename - that can be done in one 'hit'.
If the beneficiary was not available to have their photo taken, a photo of an empty space was still taken, and the words "Not Captured" were added to the file name; and the word "No" was entered into the "Photo Taken" column.
The Full Name column is an actual hyperlink to the photo. Currently, this is the system I am using to look at the beneficiary's photo from the workbook. However, this requires the photos and the workbook to be stored in specific locations - which has negative repercussions.
That's why I would like the photo in the workbook. Also, I need it screen size so that it can be compared to the person standing in front of the computer with the workbook open.
If you have any other ideas, that's great. Otherwise, can you please explain how to make the macro happen. To help you help me, here's some info about my knowledge / experience :
I am reasonably experienced with Excel, and I am aware of Visual Basic - though I know next to nothing about using it. Even though I don't know the actual language, I can copy and past code if directed to do so. I graduated as a programmer in 1985 (Pascal was all the rage then).
Kind regards,
Jon
Sample plus code :
District Sub-county Parish Name Parish No. Surname First name Photo Taken (Yes / No) Photo File Name Full Name
USA California Los Angeles 1 Smith John Yes UCLos Angeles (1)
Smith John
USA California Los Angeles 2 Jones Helen No UCLos Angeles (2) Not Captured
Jones Helen
The code for the Photo Name column is : =IF(AND(Q2="Yes", R2<>""), LEFT(A2,1)&LEFT(B2,1) & C2 &" ("& I2 &")",LEFT(A2,1)&LEFT(B2,1) & C2 &" ("& I2 &")" & " Not Captured")
The code for the Full Name column is : =HYPERLINK('Drop Downs '!B$15&S2&".jpg",J2&" "&K2)