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

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
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,221,476
Messages
6,160,062
Members
451,615
Latest member
soroosh

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