ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Formula formatting (https://www.excelbanter.com/excel-discussion-misc-queries/146800-formula-formatting.html)

pulling my hair out

Formula formatting
 
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!!

Bob Phillips

Formula formatting
 
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!!




Trevor Shuttleworth

Formula formatting
 
=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!!




pulling my hair out

Formula formatting
 
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!!





pulling my hair out

Formula formatting
 
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!!





Dave Peterson

Formula formatting
 
=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

pulling my hair out

Formula formatting
 
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


Rick Rothstein \(MVP - VB\)

Formula formatting
 
=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


All times are GMT +1. The time now is 12:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com