![]() |
|
#2
|
|||
|
|||
|
Are you a coder?
This will be tricky and really is probably beyond the help that can be offered here. You can use the FileScriptingObject to deduce the newest file Code:
Sub GetMostRecentFile()
Dim objFSO As Object
Dim objFile As Object
Dim objFldr As Object
Dim strFilename As String
Dim lastDate As Date
Dim myDir As String
myDir = ActivePresentation.Path & "\"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFldr = objFSO.GetFolder(myDir)
lastDate = DateSerial(1900, 1, 1)
For Each objFile In objFldr.Files
If objFile.Name Like "*.xls*" Then
If objFile.DateLastModified > lastDate Then
lastDate = objFile.DateLastModified
strFilename = objFile.Name
End If
End If
Next objFile
MsgBox strFilename
End Sub
You would probably have to create an instance of Excel , open the relevant file with no window (invisible) and copy and paste the table into PowerPoint. (Not even sure this is possible invisibly) This is not going to be simple if you are not a reasonable coder! |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to read binary data from currently open file? | XmisterIS | Word VBA | 0 | 04-09-2014 04:38 AM |
| Weird message “the file ( ) should be opened as read-only unless changes to it need t | Jamal NUMAN | Word | 6 | 11-13-2013 01:53 AM |
Change personal folder items to 'read"
|
J C M | Outlook | 1 | 01-09-2012 10:42 AM |
| Outlook Does Not Retrieve Email from Newest | agusbagus | Outlook | 0 | 11-07-2010 07:15 AM |
| PowerPoint can't read x.ppt file? | chronic student | PowerPoint | 0 | 05-30-2006 05:35 AM |