#1   Report Post  
Junior Member
 
Posts: 1
Default Lower case date

Hi,
I would like the user to input the date, but in this format:
ddmmmyy

right now i have it through Data/Data validation and it works out, but it keeps the month first letter in upper case like:

01Mar13


I would like to have it like:

01mar13

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 277
Default Lower case date

On Thu, 11 Apr 2013 22:58:07 +0000, AmitojC
wrote:


Hi,
I would like the user to input the date, but in this format:
ddmmmyy

right now i have it through Data/Data validation and it works out, but
it keeps the month first letter in upper case like:

01Mar13


I would like to have it like:

01mar13

Thanks!



12 IF mmm = "Jan" then d,"jan",yyyy
etc for each month

type swapout statements.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 277
Default Lower case date

On Sat, 13 Apr 2013 03:11:14 -0700, CellShocked
<cellshocked@thecellvalueattheendofthespreadsheet. org wrote:

On Thu, 11 Apr 2013 22:58:07 +0000, AmitojC
wrote:


Hi,
I would like the user to input the date, but in this format:
ddmmmyy

right now i have it through Data/Data validation and it works out, but
it keeps the month first letter in upper case like:

01Mar13


I would like to have it like:

01mar13

Thanks!



12 IF mmm = "Jan" then d,"jan",yyyy
etc for each month

type swapout statements.


Note, you will NOT generally be able to use your "assembled" date string
as a "valid" "date string" elsewhere in the workbook.



I used cell C4, but you can change as needed.

In cell c4 I had a date formatted cell and a date entered. In the case
of an 'error', it simply refers to the date in c2 anyway.

In C4, I put this formula:
=CONCATENATE(DAY(C2),C3,YEAR(C2))


In C3 I put this IF statement series...

=IF(MONTH(C2)=1,",jan,",IF(MONTH(C2)=2,",feb,",
IF(MONTH(C2)=3,",mar,",IF(MONTH(C2)=4,",apr,",
IF(MONTH(C2)=5,",may,",IF(MONTH(C2)=6,",jun,",
IF(MONTH(C2)=7,",jul,",IF(MONTH(C2)=8,",aug,",
IF(MONTH(C2)=9,",sep,",IF(MONTH(C2)=10,",oct,",
IF(MONTH(C2)=11,",nov,",IF(MONTH(C2)=12,",dec,",
C2))))))))))))


NOTE;
(You have to re-assemble the 73 character line lengths into one single
statement)
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 277
Default Lower case date

On Sat, 13 Apr 2013 14:05:04 -0700, CellShocked
<cellshocked@thecellvalueattheendofthespreadsheet. org wrote:

On Sat, 13 Apr 2013 03:11:14 -0700, CellShocked
<cellshocked@thecellvalueattheendofthespreadsheet .org wrote:

On Thu, 11 Apr 2013 22:58:07 +0000, AmitojC
wrote:


Hi,
I would like the user to input the date, but in this format:
ddmmmyy

right now i have it through Data/Data validation and it works out, but
it keeps the month first letter in upper case like:

01Mar13


I would like to have it like:

01mar13

Thanks!



12 IF mmm = "Jan" then d,"jan",yyyy
etc for each month

type swapout statements.


Note, you will NOT generally be able to use your "assembled" date string
as a "valid" "date string" elsewhere in the workbook.



I used cell C4, but you can change as needed.


C2 dangit... cell C2 !!!


In cell c4 I had a date formatted cell and a date entered. In the case
of an 'error', it simply refers to the date in c2 anyway.


C2 DANGIT!





In C4, I put this formula:
=CONCATENATE(DAY(C2),C3,YEAR(C2))


In C3 I put this IF statement series...

=IF(MONTH(C2)=1,",jan,",IF(MONTH(C2)=2,",feb,",
IF(MONTH(C2)=3,",mar,",IF(MONTH(C2)=4,",apr,",
IF(MONTH(C2)=5,",may,",IF(MONTH(C2)=6,",jun,",
IF(MONTH(C2)=7,",jul,",IF(MONTH(C2)=8,",aug,",
IF(MONTH(C2)=9,",sep,",IF(MONTH(C2)=10,",oct,",
IF(MONTH(C2)=11,",nov,",IF(MONTH(C2)=12,",dec," ,
C2))))))))))))


NOTE;
(You have to re-assemble the 73 character line lengths into one single
statement)


sorry bout that
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 277
Default Lower case date

On Sat, 13 Apr 2013 14:06:41 -0700, CellShocked
<cellshocked@thecellvalueattheendofthespreadsheet. org wrote:


sorry bout that



http://www.mediafire.com/view/?m7514zxwz9kdbkm
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Minor puzzle: some UDF calls respect mixed case, others insist on lower case Prof Wonmug Excel Programming 5 May 1st 10 12:32 AM
Changing multiple cell text from lower case to upper case Patti Excel Discussion (Misc queries) 2 January 4th 08 08:35 PM
Change the text from lower case to upper case in an Excel work boo dave01968 Excel Discussion (Misc queries) 2 December 9th 05 09:09 AM
How do I change a column in Excel from upper case to lower case? Debbie Kennedy Excel Worksheet Functions 3 May 2nd 05 06:57 PM
How do I change existing text from lower case to upper case CT Cameron Excel Discussion (Misc queries) 2 November 30th 04 01:07 AM


All times are GMT +1. The time now is 06:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"