Share via

Getting Photo Create Date

Anonymous
2010-10-26T22:34:27+00:00

Is it possible to have excel pull the "Photo Create Date" from a JPG file.  I have the list of file names and I want to put in the next column the photo create date taken from the photos extended data.

Thanks

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2010-10-27T15:25:31+00:00

    Am 27.10.2010 00:34, schrieb Paul AZ:

    Is it possible to have excel pull the "Photo Create Date" from a JPG file.

    I found a EXIF-Reader for VB which works also in VBA:

    http://sourceforge.net/projects/exifclass/

    Sub Test()

      Dim EX As New ExifReader

      EX.Load "C:\temp\test.jpg"

      Debug.Print EX.Tag(DateTimeOriginal)

    End Sub

    Andreas.

    Was this answer helpful?

    0 comments No comments
  2. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2010-10-27T10:31:51+00:00

    photo create date taken from the photos extended data.

    Have a look at this side:

    http://www.vbaccelerator.com/home/VB/Code/vbMedia/Using_GDI_Plus/Reading_EXIF_and_Other_Image_Properties/article.asp

    Andreas.

    Was this answer helpful?

    0 comments No comments