Set Date Format in VBA Code

tlc53

Active Member
Joined
Jul 26, 2018
Messages
399
Hi,

I have a VBA code which is working great for me, however I want to define the date format on cell A3 to dd.mm.yy
How do I incorporate it into this extract of coding?

strName = wsA.Range("A1").Value _
& " - " & wsA.Range("A2").Value _
& " " & wsA.Range("A3").Value

Thank you! :)
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
change this:

Code:
wsA.Range("A3").Value
to

Code:
Format(ws.range("A3"),"dd.mm.yy")[/COLOR]
 
Upvote 0
Thank you! I just put an "a" after the "ws" and it did the trick.
The code is now causing another problem which I have posted a separate posting about.

Thank you for helping me with this! :)
 
Upvote 0

Forum statistics

Threads
1,223,627
Messages
6,173,417
Members
452,514
Latest member
cjkelly15

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