Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 44
Default filter a column from other sheet.

Is it possible i can type a value in a cell and excel filter in specified
sheet&column by this value?

kind regards

thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 209
Default filter a column from other sheet.

Yes but you'd need a very specific macro.
--
Hope this helps.
Gary Brown


"nader" wrote:

Is it possible i can type a value in a cell and excel filter in specified
sheet&column by this value?

kind regards

thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 44
Default filter a column from other sheet.

hi Gary Brown
thank you for reply and helps.
How can i getting specific macro for following example:

i type a date in "sheet2;A1"and a date in "sheet2;A2" then i want filtering
in sheet1;column F by custom: greater than or equal to"sheet2;A1" And less
than or equal to "sheet2;A2".

sorry; new in english.

many thanks.

"Gary Brown" wrote:

Yes but you'd need a very specific macro.
--
Hope this helps.
Gary Brown


"nader" wrote:

Is it possible i can type a value in a cell and excel filter in specified
sheet&column by this value?

kind regards

thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 209
Default filter a column from other sheet.

Here's a macro that would work....

Sub FilterMe()
On Error Resume Next

Selection.AutoFilter Field:=6, _
Criteria1:="=" & Range("Sheet2!A1").Value, _
Operator:=xlAnd, _
Criteria2:="<=" & Range("Sheet2!A2").Value

End Sub

--
Hope this helps.
If this post was helpfull, please remember to click on the ''''YES''''
button at the bottom of the screen.
Thanks,
Gary Brown


"nader" wrote:

hi Gary Brown
thank you for reply and helps.
How can i getting specific macro for following example:

i type a date in "sheet2;A1"and a date in "sheet2;A2" then i want filtering
in sheet1;column F by custom: greater than or equal to"sheet2;A1" And less
than or equal to "sheet2;A2".

sorry; new in english.

many thanks.

"Gary Brown" wrote:

Yes but you'd need a very specific macro.
--
Hope this helps.
Gary Brown


"nader" wrote:

Is it possible i can type a value in a cell and excel filter in specified
sheet&column by this value?

kind regards

thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 44
Default filter a column from other sheet.

Dear Gary
thank you very much; i'm glad to communicate you.

it works successfully but there is a small difficulty;"custom" adjusted by
criteria range (specified value) currently but doesn't filter by this
adjusting and return 00/01/00 date every time. i see format cell in 'date'
but it doesn't work too.


"Gary Brown" wrote:

Here's a macro that would work....

Sub FilterMe()
On Error Resume Next

Selection.AutoFilter Field:=6, _
Criteria1:="=" & Range("Sheet2!A1").Value, _
Operator:=xlAnd, _
Criteria2:="<=" & Range("Sheet2!A2").Value

End Sub

--
Hope this helps.
If this post was helpfull, please remember to click on the ''''YES''''
button at the bottom of the screen.
Thanks,
Gary Brown


"nader" wrote:

hi Gary Brown
thank you for reply and helps.
How can i getting specific macro for following example:

i type a date in "sheet2;A1"and a date in "sheet2;A2" then i want filtering
in sheet1;column F by custom: greater than or equal to"sheet2;A1" And less
than or equal to "sheet2;A2".

sorry; new in english.

many thanks.

"Gary Brown" wrote:

Yes but you'd need a very specific macro.
--
Hope this helps.
Gary Brown


"nader" wrote:

Is it possible i can type a value in a cell and excel filter in specified
sheet&column by this value?

kind regards

thanks

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
Advanced filter to another sheet goayimm Excel Discussion (Misc queries) 1 June 5th 08 03:30 AM
Copy/filter data in a sheet from another sheet Sheikh Saadi Excel Discussion (Misc queries) 1 November 22nd 07 08:28 AM
Filter Range on Sheet B Based on List on Sheet A Brent E Excel Discussion (Misc queries) 4 April 23rd 07 04:10 PM
'Copy to' Advance Filter depend only on sheet ID not start sheet Sandy Yates Excel Worksheet Functions 0 April 4th 06 03:48 AM
How to Filter in to another sheet Noble Excel Discussion (Misc queries) 1 December 6th 05 11:42 AM


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