Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 107
Default Need Text formula Help

I m using this formula/format to displya Date Range what i select by autofilter
"From "&TEXT(MIN(A6:A2151),"dd.mm.yy")&" to "&TEXT(MAX(A6:A2151),"dd.mm.yy")

This formula/format in normal position it works correctly but when i filter
by drop down list by selecting any date this not work properly. what should
make change in this.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Need Text formula Help

What do you mean by did not work properly?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Rao Ratan Singh" wrote in message
...
I m using this formula/format to displya Date Range what i select by
autofilter
"From "&TEXT(MIN(A6:A2151),"dd.mm.yy")&" to
"&TEXT(MAX(A6:A2151),"dd.mm.yy")

This formula/format in normal position it works correctly but when i
filter
by drop down list by selecting any date this not work properly. what
should
make change in this.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Need Text formula Help

When you apply data|Filter|autofilter, you can use =subtotal(5,...) to get the
minimum and =subtotal(4,...) to get the max.

=Min() and =max() will not ignore those hidden rows.

so:
="From "&TEXT(subtotal(5,A6:A2151),"dd.mm.yy")
&" to "&TEXT(subtotal(4,A6:A2151),"dd.mm.yy")

May work for you

Rao Ratan Singh wrote:

I m using this formula/format to displya Date Range what i select by autofilter
"From "&TEXT(MIN(A6:A2151),"dd.mm.yy")&" to "&TEXT(MAX(A6:A2151),"dd.mm.yy")

This formula/format in normal position it works correctly but when i filter
by drop down list by selecting any date this not work properly. what should
make change in this.


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 107
Default Need Text formula Help

Thank you dave. But How i can cutom ato filter between two date e.g. 01.04.07
to 30.04.07 (dd.mm.yy). I m using office XP.



"Dave Peterson" wrote:

When you apply data|Filter|autofilter, you can use =subtotal(5,...) to get the
minimum and =subtotal(4,...) to get the max.

=Min() and =max() will not ignore those hidden rows.

so:
="From "&TEXT(subtotal(5,A6:A2151),"dd.mm.yy")
&" to "&TEXT(subtotal(4,A6:A2151),"dd.mm.yy")

May work for you

Rao Ratan Singh wrote:

I m using this formula/format to displya Date Range what i select by autofilter
"From "&TEXT(MIN(A6:A2151),"dd.mm.yy")&" to "&TEXT(MAX(A6:A2151),"dd.mm.yy")

This formula/format in normal position it works correctly but when i filter
by drop down list by selecting any date this not work properly. what should
make change in this.


--

Dave Peterson

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Need Text formula Help

You put those values in the filter criteria using the custom option.
Remember to format those dates as you see them in the list.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Rao Ratan Singh" wrote in message
...
Thank you dave. But How i can cutom ato filter between two date e.g.
01.04.07
to 30.04.07 (dd.mm.yy). I m using office XP.



"Dave Peterson" wrote:

When you apply data|Filter|autofilter, you can use =subtotal(5,...) to
get the
minimum and =subtotal(4,...) to get the max.

=Min() and =max() will not ignore those hidden rows.

so:
="From "&TEXT(subtotal(5,A6:A2151),"dd.mm.yy")
&" to "&TEXT(subtotal(4,A6:A2151),"dd.mm.yy")

May work for you

Rao Ratan Singh wrote:

I m using this formula/format to displya Date Range what i select by
autofilter
"From "&TEXT(MIN(A6:A2151),"dd.mm.yy")&" to
"&TEXT(MAX(A6:A2151),"dd.mm.yy")

This formula/format in normal position it works correctly but when i
filter
by drop down list by selecting any date this not work properly. what
should
make change in this.


--

Dave Peterson





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 107
Default Need Text formula Help

Thank you bob, thank you very much for your help.

"Bob Phillips" wrote:

You put those values in the filter criteria using the custom option.
Remember to format those dates as you see them in the list.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Rao Ratan Singh" wrote in message
...
Thank you dave. But How i can cutom ato filter between two date e.g.
01.04.07
to 30.04.07 (dd.mm.yy). I m using office XP.



"Dave Peterson" wrote:

When you apply data|Filter|autofilter, you can use =subtotal(5,...) to
get the
minimum and =subtotal(4,...) to get the max.

=Min() and =max() will not ignore those hidden rows.

so:
="From "&TEXT(subtotal(5,A6:A2151),"dd.mm.yy")
&" to "&TEXT(subtotal(4,A6:A2151),"dd.mm.yy")

May work for you

Rao Ratan Singh wrote:

I m using this formula/format to displya Date Range what i select by
autofilter
"From "&TEXT(MIN(A6:A2151),"dd.mm.yy")&" to
"&TEXT(MAX(A6:A2151),"dd.mm.yy")

This formula/format in normal position it works correctly but when i
filter
by drop down list by selecting any date this not work properly. what
should
make change in this.

--

Dave Peterson




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
Build excel formula using field values as text in the formula val kilbane Excel Worksheet Functions 2 April 18th 07 01:52 PM
Excel:Get concatenated text to be recognised as formula not text? yvette Excel Discussion (Misc queries) 5 January 15th 07 07:32 PM
Formula to count text and alert me if a text appears more than twi Mike Excel Discussion (Misc queries) 1 August 29th 05 09:53 PM
formula is displayed as literal text instead of formula result carlossaltz Excel Discussion (Misc queries) 2 July 1st 05 09:26 PM
match cell text with text in formula Todd L. Excel Worksheet Functions 3 December 9th 04 08:11 PM


All times are GMT +1. The time now is 06:33 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"