Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using the following formula to compare a range of cells for dates and to
return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
MIN($B9:$IV9)&"to "&MAX($B9:$IV9)
-- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "pulling my hair out" wrote in message ... I am using the following formula to compare a range of cells for dates and to return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TEXT(MIN($B9:$IV9),"0")&" to "&TEXT(MAX($B9:$IV9),"0")
or, more sophisticated: =TEXT(MIN($B9:$IV9),"#,##0.00")&" to "&TEXT(MAX($B9:$IV9),"#,##0.00") Regards Trevor "pulling my hair out" wrote in message ... I am using the following formula to compare a range of cells for dates and to return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thank you for your help!!! One other question:
Is there a way to have a workbook cell enter the current month based on the current month from the system date? I don't need complete date, just month. Thanks! "Bob Phillips" wrote: MIN($B9:$IV9)&"to "&MAX($B9:$IV9) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "pulling my hair out" wrote in message ... I am using the following formula to compare a range of cells for dates and to return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks for your help!!!
"Trevor Shuttleworth" wrote: =TEXT(MIN($B9:$IV9),"0")&" to "&TEXT(MAX($B9:$IV9),"0") or, more sophisticated: =TEXT(MIN($B9:$IV9),"#,##0.00")&" to "&TEXT(MAX($B9:$IV9),"#,##0.00") Regards Trevor "pulling my hair out" wrote in message ... I am using the following formula to compare a range of cells for dates and to return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=text(today(),"mmmm")
will spell out the month. =month(today()) will give 1 to 12 pulling my hair out wrote: thank you for your help!!! One other question: Is there a way to have a workbook cell enter the current month based on the current month from the system date? I don't need complete date, just month. Thanks! "Bob Phillips" wrote: MIN($B9:$IV9)&"to "&MAX($B9:$IV9) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "pulling my hair out" wrote in message ... I am using the following formula to compare a range of cells for dates and to return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks!!!
"Dave Peterson" wrote: =text(today(),"mmmm") will spell out the month. =month(today()) will give 1 to 12 pulling my hair out wrote: thank you for your help!!! One other question: Is there a way to have a workbook cell enter the current month based on the current month from the system date? I don't need complete date, just month. Thanks! "Bob Phillips" wrote: MIN($B9:$IV9)&"to "&MAX($B9:$IV9) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "pulling my hair out" wrote in message ... I am using the following formula to compare a range of cells for dates and to return a high and low date in one cell. =TEXT(MIN($B9:$IV9),"mm/dd/yy")&" to "&TEXT(MAX($B9:$IV9),"mm/dd/yy") My question is this: what do I use in place of mm/dd/yy formatting if I want to compare a range of cells for a high & low number and want the information returned to be a number rather than date? Where can I see a list of valid formatting options (i.e. %, text, date, accounting, $$, etc..) Thanks!! -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=text(today(),"mmmm")
will spell out the month. =month(today()) will give 1 to 12 Thanks!!! For completeness sake, =TEXT(TODAY(),"mmm") will give you the 3-letter abbreviated month name. Rick |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula Formatting | Excel Discussion (Misc queries) | |||
Formatting Within a Formula | Excel Discussion (Misc queries) | |||
Formatting with a Formula | Excel Discussion (Misc queries) | |||
Formula / Formatting Help - please!" | Excel Discussion (Misc queries) | |||
Formatting in the formula bar | Excel Discussion (Misc queries) |