+ Reply to Thread
Results 1 to 13 of 13

Using 'Now()' as a numeric string

  1. #1
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Question Using 'Now()' as a numeric string

    I am trying to create what should be a unique string.
    I figured the easiest way to do this would be to use the value given by Now().
    However I can't find out how to actually get the result of Now() as a number.
    If on a spreadsheet I put in a cell: =Now() and then format that cell as 'General' it gives me the number I am trying to get programatically.

    I tried:

    Please Login or Register  to view this content.
    but this just gives the date formatted as text according to the local formatting. How can I get it to present a msgbox such as:

    My PreText: 39722.5299725694
    As a slight aside, is there a limit to the number of characters in a worksheet name?

    Thanks

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Please Login or Register  to view this content.

    31 characters
    Cheers
    Andy
    www.andypope.info

  3. #3
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770
    Excellent on both accounts

    Thanks Andy

  4. #4
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770
    hmm... it seems if this is called in quick succesion the value of Now() hasn't changed, so won't give me unique strings.

    My next thought was to add in an 'Rnd' seeded with Now(), so that even if Now() was still the same, the string would be different.
    The problem I then had was that the text doesn't always end up numeric due to Excel seeming to convert it to scientific notation.

    For example;
    Please Login or Register  to view this content.
    Some results:
    Ws0.9929597
    Ws0.4109336
    Ws0.2277516
    Ws2.578497E-03
    I'm trying to generate unique Worksheet names; perhaps there is a better way someone can suggest? (I already know I am going to have to remove all the symbols from this text before I could use it as a ws name)
    I thought that using the current time to seed the rnd would be a good method for this, but I want to try and get around the scientific notation thats being applied now (I'd be happy if it just gave me the number!)

  5. #5
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Is that unique within the workbook or truely unique?

  6. #6
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    Why are you trying to generate unique worksheet names? If the sheets all exist in the same workbook, couldn't you use some form of incremental counter in the name based on the total number of sheets? eg ws001, ws002, ws003 etc

    Richard

  7. #7
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770
    The situation is that I will have many copies of workbook-'A', which has for instance worksheets called:

    "Sample"
    "Results"
    "Test"

    I also have another workbook that I am using as a 'backup' area.
    When one of 'workbook-'A'' is saved, it will also copy it's worksheets into the backup workbook.
    However as there is many workbook'A's the worksheets cannot keep there original name, (as there will be a "Sample" from Bob's workbook'A', and also a "Sample" from Bill's workbook'A')

    My plan was to have an index sheet in the backup workbook containing columns of 'Original Workbook', 'Original WS Name', 'New WS Name', and it was the 'New WS Name' that I was trying to generate.

    However.... in the typing of this response I've just thought, I guess I could actually set the worksheet name to be a combination of the workbook name, the user, and the worksheet name, and forget all this unique string rubbish!

    So "Sample" from Bob would be renamed to be "WorkbookA-Bob-Sample". With the worksheet name able to be relatively long this would work, but could cause issues if there are 2 bob's etc...

    I can take this route, or go a route to use unique strings if we can find a solution. (I'd be interested to find out how to create a unique string based on Now() either way )

    Edit Using the user is not going to work, as by the time the username and the original worksheet name have been concatenated it is quite possible that the string will be too long for a worksheet name. For this reason I'd prefer just to generate a unique string 20 or so characters long.
    I can't use the index of the Worksheet in the file as it's name, because the worksheets can be deleted from the backup, (if they are deleted from the original workbooks), as well as added.

    Eg,
    Peter Adds 3 worksheets:
    ws01
    ws02
    ws03
    Paul adds 1 worksheet:
    ws04
    Peter deletes his 3rd worksheet, leaving:
    ws01
    ws02
    ws04
    Paul adds another worksheet. If I use the worksheet index appended to 'ws' then it's going to try and create another ws04.

    Thanks!
    Last edited by Phil_V; 10-01-2008 at 09:15 AM. Reason: Realised Username and workbook name wouldn't work

  8. #8
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    I'd be tempted to use something like this:

    Please Login or Register  to view this content.
    Richard

  9. #9
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    When not use the row number from the Index sheet?

    To get the NOW() approach to return unique values you would need to pause for a second between each usage as the function only returns details to the second.

  10. #10
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    How about using the computer time in milliseconds.

    Please Login or Register  to view this content.

  11. #11
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770
    That would have been a nice solution I think, can't see my calling the routine faster than each millisecond. Although isn't there still some issue of it not actually incrementing each millisecond. I can't remember where but I seem to remember reading something that although it's in millisecond divisions, it doesn't actually update every millisecond?
    Of course I could be completely wrong about that!

    For now I've gone with this method which seems to be fairly good, and shouldn't produce duplicates unless I am very very unlucky!

    Please Login or Register  to view this content.
    The left 31 characters of "Ws" the 'Now' number, and 2 RND numbers, with '.' removed.

  12. #12
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    You can always add a check that the value returned is not the same as the previous value. If it is execute the code again.

  13. #13
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    If this is for a network application, you could have a text file accessible by all that contains sequential numbers. When the workbook is to be saved, open the text file, get the last number, increment it, and write it to the text file -- perhaps along with username, date and time, and anything else useful -- and then save the workbook as wkbxxxx or whatever.
    Entia non sunt multiplicanda sine necessitate

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. validating a text and numeric input string
    By roasty_1 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-11-2008, 12:41 PM
  2. Extracting Numeric data from a string
    By roasty_1 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-04-2008, 06:51 AM
  3. inputbox for simple verification purposes?
    By durandal05 in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 06-08-2008, 06:03 PM
  4. Extract numeric and char from string!
    By aywen in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-16-2007, 11:39 AM
  5. Assign a numeric value to a text string
    By AndyC8 in forum Excel General
    Replies: 3
    Last Post: 11-29-2006, 09:27 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