Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm doing a date calculation where by 1 is January 1900, 2 is February 1900,
.... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=Month(1/1/1900) would extract 1 from 1/1/1900, etc.
Dave -- Brevity is the soul of wit. "Brad" wrote: I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try:
=MOD(H3-1,12)+1 "Brad" wrote: I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks - Tuesday morning after a three day weekend - shoulda seen that one
myself "Toppers" wrote: Try: =MOD(H3-1,12)+1 "Brad" wrote: I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't remember saying thanks - so Thank you.
"Toppers" wrote: Try: =MOD(H3-1,12)+1 "Brad" wrote: I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Appreciate the feedback.
"Brad" wrote: I don't remember saying thanks - so Thank you. "Toppers" wrote: Try: =MOD(H3-1,12)+1 "Brad" wrote: I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is this homework? Try this
=MOD(H3-1,12)+1 and think why it works best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Brad" wrote in message ... I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks - not homework - shoulda seen this one myself.
"Bernard Liengme" wrote: Is this homework? Try this =MOD(H3-1,12)+1 and think why it works best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Brad" wrote in message ... I'm doing a date calculation where by 1 is January 1900, 2 is February 1900, ... 1281 is September 2006. I want to extract the month from the number. The following works - but is there a better way (where I don't have to use an IF)? =IF(MOD(H3,12)<0,MOD(H3,12),12) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need some comments on my Utility_Move class module. | Excel Worksheet Functions | |||
Creating a Custom Excel Function to Calculate Gini Coefficients | Excel Worksheet Functions | |||
Date & Time | New Users to Excel | |||
Conversion | Excel Worksheet Functions | |||
HOW CAN I GET OFFICE 2003 EXCEL BASIC TO NEST FUNCTIONS LIKE EXCE. | Excel Worksheet Functions |