Custom Data type in VBA

Ashk49

New Member
Joined
May 27, 2008
Messages
31
Hi ,
Do you know how can I make custom data type in VBA?
I need to make a variable like this format:
2008-04-19 18:00:01 OR yyyy-mm-dd hh:mm:ss
I can not use Date type of VB for this .
Please help me :confused:
Thanks in Advance
Ashkan
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Ashkan

Don't quite see how that's a custom data type.

Couldn't you just use format to get the required result?
Rich (BB code):
varDt = Format(Now(),"yyyy-mm-dd hh:mm:ss")
Msgbox varDt
 
Upvote 0
Hi Norie,
Thanks for answer.
Please look at the following link that is my original problem.
http://www.mrexcel.com/forum/showthread.php?p=1606690
Actually Now I change the type of my variables to:
Begin_Of_Day = Format(Now(), "yyyy-mm-dd hh:mm:ss")
End_Of_Day = Format(Now(), "yyyy-mm-dd hh:mm:ss")

But still I see them like this format: mm/dd/yyyy hh:mm:ss
That is enough to break my query.
Thanks Again
Regards
Ashkan
 
Upvote 0
Ashkan

You aren't actually using your variables in the SQL, you are using the strings Begin_Of_Day and End_Of Day.

By the way I think both threads are in the wrong forums.

This forum is for questions in foreign languages and the other is for general discussion, as it's title suggests.:)

Contact a moderator and have them moved to more appropriate forums.
 
Upvote 0
Hi Norie,
Thanks for advise.
Definition is on the VB and after get value use it in SQL. All in excel Macro.
Regards
Ashkan
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,180
Members
448,871
Latest member
hengshankouniuniu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top