Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 55
Default 1 Column 'Date' to 3 Seperate Columns 'Month, Day, Year' How??

I used to have month, day and year entered in separate columns on my
€˜registrants sheet, when I did this I used this formula
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE))=TRUE,"----",VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) )
to duplicate the respective values in separate columns on another sheet.

However now the month, day and year on the €˜Registrants sheet are in one
column as a common date (i.e. Dec. 12, 1996). How do I modify my formula to
duplicate the year, month or day separately in cells on €˜Forms sheet?

FROM: €˜Registrants sheet has month, day and year in one column as a common
date (i.e. Dec. 12, 1996)

TO: €˜Form sheet needs month, day and year entered in separate columns
extracted from the column on the €˜Registrants sheet.

Thanks
Kerry

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default 1 Column 'Date' to 3 Seperate Columns 'Month, Day, Year' How??

Something like the following:
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",YEAR(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE )))
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",MONTH(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALS E)))
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",DAY(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) ))
?

Regards,
Fred


"Ksean" wrote in message
...
I used to have month, day and year entered in separate columns on my
€˜registrants sheet, when I did this I used this formula
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE))=TRUE,"----",VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) )
to duplicate the respective values in separate columns on another sheet.

However now the month, day and year on the €˜Registrants sheet are in one
column as a common date (i.e. Dec. 12, 1996). How do I modify my formula
to
duplicate the year, month or day separately in cells on €˜Forms sheet?

FROM: €˜Registrants sheet has month, day and year in one column as a
common
date (i.e. Dec. 12, 1996)

TO: €˜Form sheet needs month, day and year entered in separate columns
extracted from the column on the €˜Registrants sheet.

Thanks
Kerry


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 55
Default 1 Column 'Date' to 3 Seperate Columns 'Month, Day, Year' How?

I knew it was something simple but I just couldn't put my finger on it.

Thanks
Kerry



"Fred Smith" wrote:

Something like the following:
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",YEAR(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE )))
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",MONTH(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALS E)))
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",DAY(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) ))
?

Regards,
Fred


"Ksean" wrote in message
...
I used to have month, day and year entered in separate columns on my
€˜registrants sheet, when I did this I used this formula
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE))=TRUE,"----",VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) )
to duplicate the respective values in separate columns on another sheet.

However now the month, day and year on the €˜Registrants sheet are in one
column as a common date (i.e. Dec. 12, 1996). How do I modify my formula
to
duplicate the year, month or day separately in cells on €˜Forms sheet?

FROM: €˜Registrants sheet has month, day and year in one column as a
common
date (i.e. Dec. 12, 1996)

TO: €˜Form sheet needs month, day and year entered in separate columns
extracted from the column on the €˜Registrants sheet.

Thanks
Kerry


.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default 1 Column 'Date' to 3 Seperate Columns 'Month, Day, Year' How?

Glad to help. Thanks for the feedback.

Fred.

"Ksean" wrote in message
...
I knew it was something simple but I just couldn't put my finger on it.

Thanks
Kerry



"Fred Smith" wrote:

Something like the following:
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",YEAR(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE )))
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",MONTH(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALS E)))
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE)),"----",DAY(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) ))
?

Regards,
Fred


"Ksean" wrote in message
...
I used to have month, day and year entered in separate columns on my
€˜registrants sheet, when I did this I used this formula
=IF(ISNA(VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FAL SE))=TRUE,"----",VLOOKUP(C9,Registrants!$A$3:$Y$1000,7,FALSE) )
to duplicate the respective values in separate columns on another
sheet.

However now the month, day and year on the €˜Registrants sheet are in
one
column as a common date (i.e. Dec. 12, 1996). How do I modify my
formula
to
duplicate the year, month or day separately in cells on €˜Forms sheet?

FROM: €˜Registrants sheet has month, day and year in one column as a
common
date (i.e. Dec. 12, 1996)

TO: €˜Form sheet needs month, day and year entered in separate columns
extracted from the column on the €˜Registrants sheet.

Thanks
Kerry


.


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
count month when date is in day/month/year format ccKennedy Excel Worksheet Functions 6 April 30th 09 03:32 AM
Separating dates from one column to Month, Date, Year columns frogstyle Excel Discussion (Misc queries) 2 August 6th 08 04:13 PM
Tell me which "season" (Month/Day through Month/Day) a date(Month/Day/Year) falls in (any year)??? misscrf Excel Discussion (Misc queries) 1 December 14th 07 02:59 PM
seperate first 2 lines of column in seperate columns in same row Glynnhamer Excel Discussion (Misc queries) 2 October 9th 06 04:23 AM
Sort month/date/year data using month and date only SMW820 Excel Discussion (Misc queries) 6 June 22nd 06 05:14 PM


All times are GMT +1. The time now is 11:11 PM.

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

About Us

"It's about Microsoft Excel"