Change month into date

Panoos64

Well-known Member
Joined
Mar 1, 2014
Messages
882
Hi all, Kindly require to provide me support so that to create a VBA code, by which should change in col. "A" the format of mm/yyyy into dd/mm/yyyy.

e.g. 09/2018 should be 30/09/2018
10/2018 should be 31/10/2018

Thank you all in advance
 
Last edited:

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Try this

Code:
Option Explicit
Dim LastRowNo As Long
Dim DayLoop As Long


Sub DaysInMonth()
LastRowNo = Sheets(1).Range("A1048576").End(xlUp).Row


For DayLoop = 1 To LastRowNo
    Sheets(1).Range("B" & DayLoop).Value = Format(Day(DateSerial(Year(Sheets(1).Range("A" & DayLoop).Value), Month(Sheets(1).Range("A" & DayLoop).Value) + 1, 1) - 1) & "/" & Month(Sheets(1).Range("A" & DayLoop).Value) & "/" & Year(Sheets(1).Range("A" & DayLoop).Value), "dd/mm/yyyy")
    
Next DayLoop


End Sub
 
Last edited:
Upvote 0
Hi nemm, your code works perfect and based to my data! many thanks for your support. Hv a nice day
 
Upvote 0

Forum statistics

Threads
1,217,119
Messages
6,134,751
Members
449,887
Latest member
robyngknapp

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