<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>DisplayFusion RSS: Quick and Easy way to automatically update graphs and slides using macros in Excel and Powerpoint and display local weather radars (Digital Signage Making Adverts)</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=d18c188c-dca1-4fa9-ad9a-e891b979c858" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=d18c188c-dca1-4fa9-ad9a-e891b979c858</link>
<description>DisplayFusion RSS: Quick and Easy way to automatically update graphs and slides using macros in Excel and Powerpoint and display local weather radars (Digital Signage Making Adverts)</description>
<lastBuildDate>Sat, 23 May 2026 04:59:28 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=d18c188c-dca1-4fa9-ad9a-e891b979c858</generator>
<item>
<title>RE: Quick and Easy way to automatically update graphs and slides using macros in Excel and Powerpoint and display local weather radars (Digital Signage Making Adverts)</title>
<link>https://www.displayfusion.com/Discussions/View/quick-and-easy-way-to-automatically-update-graphs-and-slides-using-macros-in-excel-and-powerpoint-and-display-local-weather-radars-digital-signage-making-adverts/?ID=d18c188c-dca1-4fa9-ad9a-e891b979c858#2</link>
<pubDate>Thu, 26 Jul 2012 13:36:31 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/quick-and-easy-way-to-automatically-update-graphs-and-slides-using-macros-in-excel-and-powerpoint-and-display-local-weather-radars-digital-signage-making-adverts/?ID=d18c188c-dca1-4fa9-ad9a-e891b979c858#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thanks for sharing this solution Keegan, very creative!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks for sharing this solution Keegan, very creative!
</div>
]]></content:encoded>
</item>
<item>
<title>Quick and Easy way to automatically update graphs and slides using macros in Excel and Powerpoint and display local weather radars (Digital Signage Making Adverts)</title>
<link>https://www.displayfusion.com/Discussions/View/quick-and-easy-way-to-automatically-update-graphs-and-slides-using-macros-in-excel-and-powerpoint-and-display-local-weather-radars-digital-signage-making-adverts/?ID=d18c188c-dca1-4fa9-ad9a-e891b979c858</link>
<pubDate>Thu, 26 Jul 2012 11:17:07 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/quick-and-easy-way-to-automatically-update-graphs-and-slides-using-macros-in-excel-and-powerpoint-and-display-local-weather-radars-digital-signage-making-adverts/?ID=d18c188c-dca1-4fa9-ad9a-e891b979c858</guid>
<category>DisplayFusion</category>
<description><![CDATA[A cleaner version of this is listed below as a PDF.
Setup and Execution of multiple monitor displays
Section 1:ADMIN SETUP INSTRUCTIONS
(End users, see steps in section 3)
•Install Display Fusion on the PC running the multiple monitors.  (Input License Key)
•  Open Display Fusion’s settings...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
A cleaner version of this is listed below as a PDF.<br/>
<br/>
<b>Setup and Execution of multiple monitor displays<br/>
Section 1:ADMIN SETUP INSTRUCTIONS</b><br/>
 (End users, see steps in section 3)<br/>
<br/>
•Install Display Fusion on the PC running the multiple monitors.  (Input License Key)<br/>
•  Open Display Fusion’s settings<br/>
•Click On Screen Saver tab<br/>
•Change Timeout to 1 minute<br/>
•Check “Allow Display Fusion to Manage…”<br/>
•Click on Monitor 1 <br/>
•Select “DisplayFusion Photos Screen Saver”<br/>
•Click Settings button located to the right<br/>
 <br/>
 <br/>
<br/>
•Update Photos Folder location to appropriate file location <br/>
c:\multiple_monitor_data\Shop_Floor\Monitor1<br/>
•Adjust settings as highlighted<br/>
•Repeat section 1 for remaining monitors (Each PC gets its own folder, Each monitor gets a Subfolder)<br/>
•Click OK<br/>
<br/>
 <br/>
<b>Section 2<br/>
<br/>
MACROS<br/>
<br/>
POWERPOINT <br/></b><br/>
•For new files Hit Alt + F11 to bring up the Macro editor <br/>
•Copy the text below and manipulate as needed. <br/>
•Save File<br/>
Sub Save_PowerPoint_Slide_as_Images()<br/>
Dim filePath As String<br/>
Dim sImagePath As String<br/>
Dim sImageName As String<br/>
Dim oSlide As Slide '* Slide Object<br/>
Dim lScaleWidth As Long '* Scale Width<br/>
Dim lScaleHeight As Long '* Scale Height<br/>
On Error GoTo Err_ImageSave<br/>
<br/>
‘    alter image path as needed<br/>
<br/>
filePath = "c:\multiple_monitor_data\Shop_Floor\Monitor1\Slides\*.*"<br/>
Kill filePath<br/>
‘    This is to remove any extra jpgs incase the number of slides decrease<br/>
<br/>
sImagePath = " c:\multiple_monitor_data\Shop_Floor\Monitor1\Slides\"<br/>
<br/>
‘   If you want the same slide(s) to display on multiple monitors, you will need to make a new PPT file for <br/>
‘   for each slide (or group of slides) you with to duplicate across the monitors and duplicate the path<br/>
‘   ie<br/>
‘   sImagePath = " c:\multiple_monitor_data\Shop_Floor\Monitor1\Slides\"<br/>
‘    sImagePath = " c:\multiple_monitor_data\Shop_Floor\Monitor2\Slides\"<br/>
<br/>
For Each oSlide In ActivePresentation.Slides<br/>
sImageName = oSlide.Name & ".jpg"<br/>
oSlide.Export sImagePath & sImageName, "JPG"<br/>
Next oSlide<br/>
Err_ImageSave:<br/>
If Err &lt;&gt; 0 Then<br/>
MsgBox Err.Description<br/>
End If<br/>
End Sub<br/>
 <br/>
<b>Section 2 (continued)</b><br/>
<br/>
<b>EXCEL</b><br/>
<br/>
•For new files Create a data Tab and add a chart on each tab needed<br/>
•Hit Alt + F11 to bring up the Macro editor <br/>
•Copy the text below and manipulate as needed. <br/>
•Save File<br/>
Sub ExportAllAspng()<br/>
'   Saves the active chart as a png file<br/>
'   Prompts for a file name and directory<br/>
‘    Alter image path as needed<br/>
<br/>
Sheets("Metal").Select<br/>
ActiveChart.Activate<br/>
ActiveChart.Export "c:\multiple_monitor_data\Shop_Floor\Monitor1\Graphs\Metal.png", "png"<br/>
<br/>
‘   Repeat for each sheet in the excel file and update the file name and path as needed.<br/>
‘   If you want the same graph to display on multiple monitors, copy the text above with a new path <br/>
‘   ie<br/>
‘   ActiveChart.Export "c:\multiple_monitor_data\Shop_Floor\Monitor1\Graphs\Metal.png", "png”<br/>
‘    ActiveChart.Export "c:\multiple_monitor_data\Shop_Floor\Monitor2\Graphs\Metal.png", "png"<br/>
<br/>
Sheets("data").Select<br/>
End Sub<br/>
 <br/>
<b>Section 3:HOW TO UPDATE EXCEL AND POWERPOINTS</b><br/>
(Macro Settings listed in Section 2)<br/>
<br/>
<b>EXCEL</b><br/>
<br/>
•Navigate to the appropriate folder (ie: c:\multiple_monitor_data\ Source_Files\Shop_Floor)<br/>
•Open Folder of PC being updated (ie: Shop_Floor)<br/>
•Open Excel File found in Folder<br/>
•Select Data tab (if not already selected)<br/>
•Manipulate data as required<br/>
•Run Macro by click the Export Graph Tab<br/>
 <br/>
•Save Excel File and close<br/>
<br/>
<b>POWERPOINT</b><br/>
<br/>
•Open Power Point File found in appropriate folder (ie: c:\multiple_monitor_data\ Source_Files\Shop_Floor)<br/>
•Update existing slides (add or remove as needed)<br/>
•Press the Alt button plus the F8 button (Alt + F<img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/face-grin-stars.light.svg" alt="8)" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData="8)" HelpButtonDataAlign="BelowMiddle" /><br/>
•Run the Macro<br/>
 <br/>
•Save the PowerPoint file and Exit.<br/>
<br/>
Note, If the number of slides increase/decrease or for any reason the file name changes, Run “double_click_to_update.bat” and the screen saver will restart in 1 minute.<br/>
 <br/>
<b>Batch File Code to Restart Screen Saver (local user name below must have admin rights on the PC)<br/></b><br/>
<br/>
@echo off<br/>
taskkill.exe /S xxxxx /U xxxxx/P xxxxx /IM photos.scr<br/>
exit<br/>
<br/>
<b>Batch File Code to Download Weather Maps (or other images) from Internet</b><br/>
<br/>
REM  If for some reason a few of these images stop working you will need to find a website that only updates the same image and file name and copy in the method as seen below.  <br/>
REM Setup a scheduled task to run the batch file below on a regular schedule<br/>
REM You will need to copy wget.exe to the c:\windows  directory running the task.<br/>
<br/>
wget -r http://media3.wishtv.com/weather/dce/Regional_SAT_RAD.jpg<br/>
<br/>
copy /y <br/>
c:\multiple_monitor_data\ media3.wishtv.com\weather\dce\Regional_SAT_RAD.jpg c:\multiple_monitor_data\Main_Hall\Monitor1\Midwest_Radar.jpg<br/>
<br/>
REM Removes Temporary Director<br/>
rmdir c:\multiple_monitor_data\ media3.wishtv.com" /S /Q<br/>
<br/>
<b>Notes:<br/></b><br/>
The paths in the codes above can all be redirected to a server path.  Ie: replace C:\ with \\servername or map a drive to a server to maintain long lasting compatibility.  <br/>
<br/>
Link to WGET.EXEhttp://downloader.brothersoft.com/d.php?soft_id=5755&downloader=&url=http%3A%2F%2Fpages.interlog.com%2F%7Etcharron%2Fwgetwin-1_5_3_1-binary.zip <br/>
http://pages.interlog.com/~tcharron/wgetwin-1_5_3_1-binary.zip <br/>
<br/>
You can use the Snipping tool found on Windows 7 to copy images from PDF’s, Publisher Files, Etc as a quick and dirty way to add information to a monitor.  Save the file in appropriate the PC / Monitor # folder.<br/>
<br/>
See “Change the resolution of a slide that you export as a picture in PowerPoint” to increase the resolution of the export from PowerPoint.
</div>
]]></content:encoded>
</item>
</channel>
</rss>