Results 1 to 6 of 6

How to save picture to desktop by naming "now" statement!

Threaded View

  1. #1
    Forum Contributor HerryMarkowitz's Avatar
    Join Date
    09-10-2012
    Location
    Europe
    MS-Off Ver
    Office 2021 - Win10
    Posts
    1,014

    How to save picture to desktop by naming "now" statement!

    Greetings,
    I want to export chart to the desktop as picture.
    Following code is okey. Following code exports chart to the desktop as picture named Example.
    If Len(Dir(Environ("USERPROFILE") & "\Desktop\Excel Charts\", vbDirectory)) = 0 Then MkDir Environ("USERPROFILE") & "\Desktop\Excel Charts\"
    ActiveChart.Export Filename:=Environ("USERPROFILE") & "\Desktop\Excel Charts\" & "Example.png", FilterName:="png", Interactive:=False
    I want to export chart to the desktop as picture named current date and time. So,I am using "now" statement.
    Following code is not okey.
    Red line need to be corrected.
    If Len(Dir(Environ("USERPROFILE") & "\Desktop\Excel Charts\", vbDirectory)) = 0 Then MkDir Environ("USERPROFILE") & "\Desktop\Excel Charts\"
    ActiveChart.Export Filename:=Environ("USERPROFILE") & "\Desktop\Excel Charts\" & Now & ".png", FilterName:="png", Interactive:=False
    As a result picture name must be "2015.06.17.01.20"

    Thanks in advance.
    Last edited by HerryMarkowitz; 06-17-2015 at 09:24 AM.
    Sub DontForgetThese()
         If Your thread includes any code Then Please use code tags...
         If Your thread has been solved Then Please mark as solved...
         If Anybody has helped to you Then Please add reputation...
    End Sub

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. "Save as" macro to desktop :-(
    By GC1 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-03-2013, 02:41 AM
  2. [SOLVED] Code to save sheet as "PDF" to Desktop - Based on ComboBox 1 Value
    By matrixpom in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-21-2012, 04:37 AM
  3. Macro to File/Save as "Numbers as of [today's date]" on desktop
    By duugg in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-26-2009, 11:38 AM
  4. [SOLVED] use a macro to "Save As" to a generic desktop
    By kyle in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-10-2006, 09:30 AM
  5. Replies: 1
    Last Post: 06-30-2006, 08:00 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1