You are here:

Excel/Access the Date Picture Taken attribute

Advertisement


Mark wrote at 2009-05-20 02:34:10
DateCreated is not the same as DatePictureTaken.  DateCreated will change if a copy of the picture is made.


Savvy Pete wrote at 2009-11-27 22:47:32
Mark, I have the same problem: I need to sort copied/modified photos by "Date Picture Taken" in an Excel macro. Have you found a solution yet? If not, let me know. I have two possible solutions. Thanks. Savvy Pete.


Jenni K wrote at 2010-02-03 02:47:30
Works beautifully for Date Created, but the original question (and what I'm looking for in vain) is the attribute "Date Picture taken" which I'm told is attribute 25 but can't find out how to get to it...


Harrys wrote at 2010-10-01 11:45:50
Public Sub FileInfoName(iPath$, iFile$, Cc%)

   Dim I%, ri%



   Set nspace = CreateObject("Shell.Application").Namespace(CStr(iPath))

   Range("a6:d120").Clear



   With nspace

       'Name data not used from here

       Cells(5, 3) = .Items.Count

       For I = 0 To 640    '.Items.Count

         If Len(.GetDetailsOf(.ParseName(iFile), I)) > 0 Then

         ri = I

         End If

       Next I



       For I = 0 To ri    '.Items.Count

         Cells(I + 6, Cc - 1) = I

         Cells(I + 6, Cc + 1) = .GetDetailsOf(.ParseName(iFile), I)

         Cells(I + 6, Cc) = .GetDetailsOf(.Items, I)

         Select Case I

         Case 3, 4, 5, 12

         ' Cells(i + 6, cc + 2) = Application.WorksheetFunction.Text(.GetDetailsOf(.ParseName(iFile), i), "yyyy:mm:dd hh:mm:ss")

         Cells(I + 6, Cc + 2) = Application.WorksheetFunction.Text(Cells(I + 6, Cc + 1), "yyyy:mm:dd hh:mm:ss")

         End Select

       Next I

   End With

   Set nspace = Nothing

End Sub



if scripting runtime is included in the references then the routine above should show all the properties of the file that IE can show

The reason I put this here is that the previous answer got the date created   number 5  not the date taken no 12




About Excel
This topic answers questions related to Microsoft Excel spreadsheet (or workbook) stand-alone or Mircrosoft Office Excel including Excel 2003, Excel 2007, Office 2000, and Office XP. You can get Excel help on Excel formulas(or functions), Excell macros, charting in Excel, advanced features, and the general use of Excel. This does not provide a general Excel tutorial nor the basics of using a spreadsheet. It provides specific answers to using Microsoft Excel only. If you do not see your Excel question answered in this area then please ask an Excel question here

Excel

All Answers


Answers by Expert:


Ask Experts

Volunteer


Stuart Resnick

Expertise

I can answer questions relating to MS Excel formulas, or to programming with vba (Visual Basic for Applications) in the Excel environment. Please follow the following guidelines: your question should focus on one specific issue you want to learn. It's beyond the scope of this free service for me to create entire projects or complex vba solutions for you from scratch. You should be able to do most of the work yourself, and come here when you need help with a specific point you're stuck on. ALWAYS include a simple, concrete example illustrating what you want to learn. Explain this example in detail in the text of your question (what data is in which cells of which sheets, etc). Be very precise about the results you want, using this sample to make the logic clear. Always keep these examples SIMPLE. Never e.g. use 18 worksheets in your example if using 2 or 3 will do. Never use ranges like AI567:BB865 if using a range like A1:B3 will do. Thanks.

Experience

As a consultant, I've designed Excel tools since the 90s, working for the Federal Reserve Bank, AT&T, and (currently) Gap Inc.

Education/Credentials
My only "education" comes from 2 decades of doing spreadsheet/programming work, with major SF Bay Area corporations such as AT&T, Federal Reserve Bank, and Gap Inc.

©2012 About.com, a part of The New York Times Company. All rights reserved.