A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
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.