kevinc1973
New Member
- Joined
- Jun 20, 2019
- Messages
- 22
Hi everyone,
I have a userform that has a textbox1 initialize with today's date(mm/dd/yyyy) and a combobox3 initialize with today's date format(dd). I am using the combobox3 to write to specific rows of the spreadsheet, when they need to make a change to a specific day's data they just change the combobox value to that day of the month. I would like to have textbox1 value change as well with the combobox value but in the full date format so there is one less thing to change. I was able to change the value by:
Private sub_combobox3_change
textbox1.value = combobox3.value
end sub
but it stays with just the "day". Is there any way to keep it the full date in textbox1?
Any help would be great thanks
Kevin
I have a userform that has a textbox1 initialize with today's date(mm/dd/yyyy) and a combobox3 initialize with today's date format(dd). I am using the combobox3 to write to specific rows of the spreadsheet, when they need to make a change to a specific day's data they just change the combobox value to that day of the month. I would like to have textbox1 value change as well with the combobox value but in the full date format so there is one less thing to change. I was able to change the value by:
Private sub_combobox3_change
textbox1.value = combobox3.value
end sub
but it stays with just the "day". Is there any way to keep it the full date in textbox1?
Any help would be great thanks
Kevin