#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default date and VB

If I have a date configured out of text and put this value into a
button.caption the date is given correctly. But if i take this value and put
it from the button on the form to excel sheet a proble occurs:

20th of august 2005 on button = 20-8-05 and in excell as well
10th of august on button = 10=8-05 and in excell sheet it is 8-10-05 with
cells dd-mm-jj.

Anyone has a solution /?
C
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,718
Default date and VB

Stephen Bullen wrote a whole chapter on international issues in the book
"Excel 2002 VBA" he co-authored (Wrox). There he discusses how problems
like yours come about because VBA "speaks American" even in non-American
locales. His advice is not to send Excel literal strings from VBA but to
first convert them to the date type you want. For a date one way would be:

Range("A1").Value = DateSerial(2005, 8, 10)

so you'd have to parse the text on the button into its three date
components.

--
Jim
"Christophero" wrote in message
...
| If I have a date configured out of text and put this value into a
| button.caption the date is given correctly. But if i take this value and
put
| it from the button on the form to excel sheet a proble occurs:
|
| 20th of august 2005 on button = 20-8-05 and in excell as well
| 10th of august on button = 10=8-05 and in excell sheet it is 8-10-05 with
| cells dd-mm-jj.
|
| Anyone has a solution /?
| C


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Concatenate including a date so that the date appears as a date Zembu Excel Worksheet Functions 2 January 6th 10 06:09 PM
date in Cell to change colors if the date is beyond today's date Pete Elbert Excel Discussion (Misc queries) 2 June 6th 09 06:31 AM
Making a date go red, if date passes todays date. Jamie Excel Worksheet Functions 2 September 9th 08 02:14 PM
Report Date - Date Recv = Days Late, but how to rid completed date MS Questionnairess Excel Worksheet Functions 1 January 24th 07 11:05 PM
Date updates from worksheet to chart & changes date to a date series! Help!! Jayjg Charts and Charting in Excel 2 January 22nd 05 03:00 PM


All times are GMT +1. The time now is 03:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"