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

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
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,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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