You might check out the FormatDateTime function:
you have only two options: short data and long date, but at least they're different.
Assuming that you're using the following statement type to populate the listbox: (source data in col K)
ListBox.AddItem Range(';K'; %26amp; i).Value ' i as loop variable)
The new statement would become
ListBox.AddItem FormatDateTime(Range(';K'; %26amp; i).Value,vbLongDate))
You could also further process the source data with theWeekdayName function.
Hope that helps
No comments:
Post a Comment