I have an access column which has values like May, May-June, November, January-February etc.
Requirement is that 1) If only one month is there, I should create a transformation with a date column pointing to the last date of that month and the year would be the current year. Eg May would be 5/30/2015, January would be 1/31/2015 2) If it is having two months, then second month must be taken and the same logic as in Point 1 should be implemented. Eg May-June would be 6/31/2015, January-February would be 2/28/2015.
My first preference would be without using VBA code.
Please help.