Filter Upon Filtered Data

raindrop
Lounger
Posts: 36
Joined: 04 Feb 2013, 06:22

Filter Upon Filtered Data

Post by raindrop »

Hi !
I Want VBA Code To Filter Data By Inputing Date in C2 With Search Button Then I Want Filter Up on Filtered Data
With Just Check Box Selection of Criteria (It Could Be More Than One Check Box Selection).
Herewith Find the Sample Attachment.

Regards
Raindrop
You do not have the required permissions to view the files attached to this post.

User avatar
Rudi
gamma jay
Posts: 25455
Joined: 17 Mar 2010, 17:33
Location: Cape Town

Re: Filter Upon Filtered Data

Post by Rudi »

raindrop wrote:Hi !
I Want VBA Code To Filter Data By Inputing Date in C2 With Search Button Then I Want Filter Up on Filtered Data
With Just Check Box Selection of Criteria (It Could Be More Than One Check Box Selection).
Herewith Find the Sample Attachment.

Regards
Raindrop
Try this...
You do not have the required permissions to view the files attached to this post.
Regards,
Rudi

If your absence does not affect them, your presence didn't matter.

User avatar
Rudi
gamma jay
Posts: 25455
Joined: 17 Mar 2010, 17:33
Location: Cape Town

Re: Filter Upon Filtered Data

Post by Rudi »

Or you could have a toggle button for the date...
You do not have the required permissions to view the files attached to this post.
Regards,
Rudi

If your absence does not affect them, your presence didn't matter.

raindrop
Lounger
Posts: 36
Joined: 04 Feb 2013, 06:22

Re: Filter Upon Filtered Data

Post by raindrop »

Solved ! Thank You Very Much Mr. Rudi For Your Kind Help!

User avatar
HansV
Administrator
Posts: 78531
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Filter Upon Filtered Data

Post by HansV »

Although rudi has already solved your problem, here is yet another possibility - it doesn't use command buttons at all but instead uses the Worksheet_Change event. Simply enter a date in C2 to filter on that date. Clear C2 to remove the date filter.
R-1.xlsm
You do not have the required permissions to view the files attached to this post.
Best wishes,
Hans

raindrop
Lounger
Posts: 36
Joined: 04 Feb 2013, 06:22

Re: Filter Upon Filtered Data

Post by raindrop »

Thank You Mr. Hans, Nice Job Without Using Command Button.