Re: $$Excel-Macros$$ filter and copy/paste in new workbook and save it on desktop

2015-10-07 Thread Leo
---
> ' Select rows from Cell A1 to Cell XFD51 and copy to Clipboard
>
> '
> Range("BV51").Activate
> Range("A1:BV51").Copy
>
> '
> ' Open New Workbook and paste data from Clipboard
>
> '
> Workbooks.Add
> Range("A1").Select
> ActiveSheet.Paste
> Application.CutCopyMode = False
>
> '
> ' Save new file as "thisisthenameofanewworkbook" and close
>
> '
> ActiveWorkbook.SaveAs _
>  
> Filename:="C:\Users\(*youruseridgoeshere*)\Desktop\thisisthenameofanewworkbook.xlsb",
>  
> _
>  FileFormat:=xlExcel12, _
>  CreateBackup:=False
> Workbooks("thisisthenameofanewworkbook.xlsb").Close
> 
> End Sub
>
> I hope this helps.
>
> *Paul*
>
>
> -
>
>
>
>
>
>
>
> *“Do all the good you can,By all the means you can,In all the ways you 
> can,In all the places you can,At all the times you can,To all the people 
> you can,As long as ever you can.” - John Wesley*
> -
>
> --
> *From:* Abhishek Jain <abhish...@gmail.com >
> *To:* MS EXCEL AND VBA MACROS <excel-...@googlegroups.com > 
> *Sent:* Wednesday, October 7, 2015 2:37 AM
> *Subject:* Re: $$Excel-Macros$$ filter and copy/paste in new workbook and 
> save it on desktop
>
> Yes, we can.
>
>
>
> On Sun, Oct 4, 2015 at 3:47 PM, PRADEEP KUMAR KOKNE <pradeep...@gmail.com 
> > wrote:
>
> Hello all,
>
> Can you write code for to filter(Column S)-> select the complete visible 
> data and paste it in new workbook and save it. 
>
> Example: Column S can have 50 lines data with 10 names
>
>
> Thanks
>
> -- 
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
> https://www.facebook.com/discussexcel
>  
> FORUM RULES
>  
> 1) Use concise, accurate thread titles. Poor thread titles, like Please 
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice 
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security 
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>  
> NOTE : Don't ever post confidential data in a workbook. Forum owners and 
> members are not responsible for any loss.
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to excel-macros...@googlegroups.com .
> To post to this group, send email to excel-...@googlegroups.com 
> .
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>
>
> -- 
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
> https://www.facebook.com/discussexcel
>  
> FORUM RULES
>  
> 1) Use concise, accurate thread titles. Poor thread titles, like Please 
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice 
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security 
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>  
> NOTE : Don't ever post confidential data in a workbook. Forum owners and 
> members are not responsible for any loss.
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to excel-macros...@googlegroups.com .
> To post to this group, send email to excel-...@googlegroups.com 
> .
> Visit this group at http://grou

Re: $$Excel-Macros$$ filter and copy/paste in new workbook and save it on desktop

2015-10-07 Thread Paul Schreiner
Abhishek,
snarky...I like it!
:)
Paul

 
  From: Abhishek Jain <abhishek@gmail.com>
 To: MS EXCEL AND VBA MACROS <excel-macros@googlegroups.com> 
 Sent: Wednesday, October 7, 2015 2:37 AM
 Subject: Re: $$Excel-Macros$$ filter and copy/paste in new workbook and save 
it on desktop
   
Yes, we can.


On Sun, Oct 4, 2015 at 3:47 PM, PRADEEP KUMAR KOKNE <pradeepkumar...@gmail.com> 
wrote:

Hello all,
Can you write code for to filter(Column S)-> select the complete visible data 
and paste it in new workbook and save it. 
Example: Column S can have 50 lines data with 10 names

Thanks
-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


   

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ filter and copy/paste in new workbook and save it on desktop

2015-10-07 Thread Paul Schreiner
Mr PRADEEP,
Mr. Abhishek may be being a bit "snarky", but he has correctly answered your 
question.
Yes, "we" can.
But because there's not NEARLY enough information in your question, we'd either 
have to begin asking for lots more information, or make assumptions.
You didn't give us much to go on.- You're filtering column "S", so you've got 
between 19 and 16,384 columns   If you're using Excel 2007 or newer.    To be 
safe, perhaps we should stop at column 256 (IV)  For my example, I'll "assume" 
you have 74 columns. just because I do.
- You said you "can" have 50 lines (rows?)  Does that mean 50 rows AFTER column 
S is filtered?  Or you have 50 rows TOTAL (including the header?)  My sample 
data has 21,481 rows, so I'll use that.
- You said "with 10 names"  What are "names"? Named Ranges? values in column 
"S"? (why would that matter?)  I have no idea, so I'll disregard that.
- You're "filtering" column "S"... how?   With nothing else to go on, I'll 
"assume" you're removing blank values.
- You want to "paste" the filtered data to a "new workbook" and "save it".  
Since I don't know what filename you want, I'll call it   
"thisisthenameofanewworkbook" (because I can be snarky too!)  Since you didn't 
mention a specific file type,   I'll save it as an .xlsb file because I prefer 
that type.
- In the title of your post, you said "save it on desktop".  So at least we 
have a location.

- Now typically, I prefer NOT to use the Windows clipboard for copy/paste.  
It's CPU intensive, and CAN be damaged if you happen to be using it for 
something else while your program is running.But this program seems simple 
enough that it ought to be safe to use.
So, with the help of a macro recorder, and sample data I copied from a random 
selection of data in one of my files, I came up with this macro (comments added 
for clarity)
Sub Copy_Filtered_Data()
'
' Filter data to remove rows with blank values in column "S"
'
    ActiveSheet.Range("$A$1:$BV$21481").AutoFilter Field:=19, Criteria1:="<>"
'
' Select rows from Cell A1 to Cell XFD51 and copy to Clipboard
'
    Range("BV51").Activate
    Range("A1:BV51").Copy
'
' Open New Workbook and paste data from Clipboard
'
    Workbooks.Add
    Range("A1").Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
'
' Save new file as "thisisthenameofanewworkbook" and close
'
    ActiveWorkbook.SaveAs _
 
Filename:="C:\Users\(youruseridgoeshere)\Desktop\thisisthenameofanewworkbook.xlsb",
 _
 FileFormat:=xlExcel12, _
 CreateBackup:=False
    Workbooks("thisisthenameofanewworkbook.xlsb").Close
    
End Sub
I hope this helps.
Paul

-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-
 
  From: Abhishek Jain <abhishek@gmail.com>
 To: MS EXCEL AND VBA MACROS <excel-macros@googlegroups.com> 
 Sent: Wednesday, October 7, 2015 2:37 AM
 Subject: Re: $$Excel-Macros$$ filter and copy/paste in new workbook and save 
it on desktop
   
Yes, we can.


On Sun, Oct 4, 2015 at 3:47 PM, PRADEEP KUMAR KOKNE <pradeepkumar...@gmail.com> 
wrote:

Hello all,
Can you write code for to filter(Column S)-> select the complete visible data 
and paste it in new workbook and save it. 
Example: Column S can have 50 lines data with 10 names

Thanks
-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyr

Re: $$Excel-Macros$$ filter and copy/paste in new workbook and save it on desktop

2015-10-07 Thread Abhishek Jain
Yes, we can.

On Sun, Oct 4, 2015 at 3:47 PM, PRADEEP KUMAR KOKNE <
pradeepkumar...@gmail.com> wrote:

> Hello all,
>
> Can you write code for to filter(Column S)-> select the complete visible
> data and paste it in new workbook and save it.
>
> Example: Column S can have 50 lines data with 10 names
>
>
> Thanks
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


$$Excel-Macros$$ filter and copy/paste in new workbook and save it on desktop

2015-10-04 Thread PRADEEP KUMAR KOKNE
Hello all,

Can you write code for to filter(Column S)-> select the complete visible
data and paste it in new workbook and save it.

Example: Column S can have 50 lines data with 10 names


Thanks

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


$$Excel-Macros$$ Filter rows with com

2015-09-26 Thread BK
Dear Experts,
Kindly tell how to filter rows in excel sheet with comment in a particular 
column

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ Filter rows with com

2015-09-26 Thread ashish koul
Option Compare Text

Sub filteroncomments()

Dim commenttext As String
Dim commentrng As Range
Dim cl As Range

With ActiveSheet
.FilterMode = False
.UsedRange.EntireRow.Hidden = False
On Error Resume Next
Set commentrng = ActiveSheet.UsedRange.SpecialCells(xlCellTypeComments)
On Error GoTo 0
If commentrng Is Nothing Then
MsgBox "No comments on worksheet"
Exit Sub
End If



.UsedRange.EntireRow.Hidden = True

commenttext = InputBox("Enter comment to search")

For Each cl In commentrng
If cl.EntireRow.Hidden = True Then
If InStr(cl.Comment.Text, commenttext) > 0 Then
cl.EntireRow.Hidden = False
End If

Next

End With


End Sub


On Sat, Sep 26, 2015 at 7:03 PM, BK  wrote:

> Dear Experts,
> Kindly tell how to filter rows in excel sheet with comment in a particular
> column
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
*Regards*

*Ashish Koul*


*Visit*
http://www.excelvbamacros.in
Like Us on Facebook 
Join Us on Facebook 


P Before printing, think about the environment.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ Filter Data for Current Month

2015-08-03 Thread Soumyendu Paul
Is there anyone to help?

On Tue, Aug 4, 2015 at 10:43 AM, Soumyendu Paul soumyendu...@gmail.com
wrote:

 I want to filter all data for all July irrespective of year

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


$$Excel-Macros$$ Filter Data for Current Month

2015-08-03 Thread Soumyendu Paul
I want to filter all data for all July irrespective of year

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


autofilter-on-date-sample-modified.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Filter Data for Current Month

2015-08-03 Thread Mandeep Baluja
Check this out !!! 


Sub test()

With Sheets(Master).Range($A:$AB)
.Parent.AutoFilterMode = False
   .AutoFilter Field:=3, Criteria1:=xlFilterAllDatesInPeriodJuly, 
Operator:=xlFilterDynamic
End With

End Sub

Regards, 
Mandeep Baluja 


On Tuesday, August 4, 2015 at 11:17:13 AM UTC+5:30, Soumyendu Paul wrote:

 Is there anyone to help?

 On Tue, Aug 4, 2015 at 10:43 AM, Soumyendu Paul soumye...@gmail.com 
 javascript: wrote:

 I want to filter all data for all July irrespective of year

 -- 
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
 https://www.facebook.com/discussexcel
  
 FORUM RULES
  
 1) Use concise, accurate thread titles. Poor thread titles, like Please 
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice 
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security 
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.
  
 NOTE : Don't ever post confidential data in a workbook. Forum owners and 
 members are not responsible for any loss.
 --- 
 You received this message because you are subscribed to the Google Groups 
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to excel-macros...@googlegroups.com javascript:.
 To post to this group, send email to excel-...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


$$Excel-Macros$$ FILTER ISSUE

2014-09-22 Thread big smile
Respected Excel Guru / Friends

I have 6 entries in excel files from Raw 3 to Raw 8

I want the formula that --- When ever i filter any raw by selecting any
family name - Ex I filter Dhimant Parmar - EX R7

then i want in B1 What ever is in f - column after filter.

When ever i change my filter and the value should change according to f
column ..

I will me more thankful if you share the formula as  i want this system in
many excel files .

Thanks to all  have a nice day.

From

Chandresh Savla .

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


TRAIL WORK SHEET 1.xlsx
Description: MS-Excel 2007 spreadsheet


Re: $$Excel-Macros$$ FILTER ISSUE

2014-09-22 Thread Vaibhav Joshi
Chandresh bhai, it is not issue but requirement..here you go...

Add formula =row() in column P each cell corresponding to data.

Add formula =INDIRECT(RSUBTOTAL(6,$P$2:$P$9)C6,FALSE) to cell B2.

So as  when you filter data you will get your desired result.

Note: This will work only for filter giving one output cell.

Cheers!!

+
*I did not do this for you. God is here working through me for you.*

On Mon, Sep 22, 2014 at 12:48 PM, big smile bigsmile...@gmail.com wrote:

 Respected Excel Guru / Friends

 I have 6 entries in excel files from Raw 3 to Raw 8

 I want the formula that --- When ever i filter any raw by selecting any
 family name - Ex I filter Dhimant Parmar - EX R7

 then i want in B1 What ever is in f - column after filter.

 When ever i change my filter and the value should change according to f
 column ..

 I will me more thankful if you share the formula as  i want this system in
 many excel files .

 Thanks to all  have a nice day.

 From

 Chandresh Savla .

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


TRAIL WORK SHEET 1.xlsx
Description: MS-Excel 2007 spreadsheet


Re: $$Excel-Macros$$ FILTER ISSUE

2014-09-22 Thread big smile
Thank you Vaibhav Bhai for your good command over Excel Formulas

 God Bless you ..

You are help is very good to this group.

Keep it up.

On Mon, Sep 22, 2014 at 2:44 PM, Vaibhav Joshi v...@vabs.in wrote:

 Chandresh bhai, it is not issue but requirement..here you go...

 Add formula =row() in column P each cell corresponding to data.

 Add formula =INDIRECT(RSUBTOTAL(6,$P$2:$P$9)C6,FALSE) to cell B2.

 So as  when you filter data you will get your desired result.

 Note: This will work only for filter giving one output cell.

 Cheers!!

 +
 *I did not do this for you. God is here working through me for you.*

 On Mon, Sep 22, 2014 at 12:48 PM, big smile bigsmile...@gmail.com wrote:

 Respected Excel Guru / Friends

 I have 6 entries in excel files from Raw 3 to Raw 8

 I want the formula that --- When ever i filter any raw by selecting any
 family name - Ex I filter Dhimant Parmar - EX R7

 then i want in B1 What ever is in f - column after filter.

 When ever i change my filter and the value should change according to f
 column ..

 I will me more thankful if you share the formula as  i want this system
 in many excel files .

 Thanks to all  have a nice day.

 From

 Chandresh Savla .

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ FILTER ISSUE

2014-09-22 Thread Vaibhav Joshi
Cheers Bro..

Keep Smiling :)

+
*I did not do this for you. God is here working through me for you.*

On Mon, Sep 22, 2014 at 3:39 PM, big smile bigsmile...@gmail.com wrote:

 Thank you Vaibhav Bhai for your good command over Excel Formulas

  God Bless you ..

 You are help is very good to this group.

 Keep it up.

 On Mon, Sep 22, 2014 at 2:44 PM, Vaibhav Joshi v...@vabs.in wrote:

 Chandresh bhai, it is not issue but requirement..here you go...

 Add formula =row() in column P each cell corresponding to data.

 Add formula =INDIRECT(RSUBTOTAL(6,$P$2:$P$9)C6,FALSE) to cell B2.

 So as  when you filter data you will get your desired result.

 Note: This will work only for filter giving one output cell.

 Cheers!!

 +
 *I did not do this for you. God is here working through me for you.*

 On Mon, Sep 22, 2014 at 12:48 PM, big smile bigsmile...@gmail.com
 wrote:

 Respected Excel Guru / Friends

 I have 6 entries in excel files from Raw 3 to Raw 8

 I want the formula that --- When ever i filter any raw by selecting any
 family name - Ex I filter Dhimant Parmar - EX R7

 then i want in B1 What ever is in f - column after filter.

 When ever i change my filter and the value should change according to f
 column ..

 I will me more thankful if you share the formula as  i want this system
 in many excel files .

 Thanks to all  have a nice day.

 From

 Chandresh Savla .

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to 

Re: $$Excel-Macros$$ Filter

2014-09-03 Thread daya p
sir,
not accurate
pls  with combo box
some changed  bcoz if any 1 change data in sheet its not correct so i hide
that data only want 2 show form

is i select india than next combo (state) show all state names than i
select 1 state name than it it show its capital with 4 th combo data


   Country State Capital Famous Cities  INDIA Karnataka Banglore Mysore
INDIA Karnataka Banglore Shimogga  INDIA Maharashatra Mumbai Pune  INDIA
Maharashatra Mumbai navi mumbai  INDIA Goa Panaji margao  INDIA Goa Panaji
vasco  INDIA Gujarat Gandhinagar Ahmedabad  INDIA Gujarat Gandhinagar
Vadodara


On 30 August 2014 20:41, Bé Trần Văn betnmtdongna...@gmail.com wrote:

 B2 select and click the Filter button to filter,

 Type in C2 or D2 and click the Filter button to filter.


 2014-08-30 19:20 GMT+07:00 daya p princedaya2...@gmail.com:

 Hi Friends,

 I need help regarding  filter data
 form with 3 combo box  label

 1st combo i select INDIA
 next if i select State (in2nd combo) name as Gujrat
 3rd combo vl show Gandhinagar

   Country State Capital  INDIA Karnataka Banglore  INDIA Maharashatra
 Mumbai  INDIA Goa Panaji  INDIA Gujarat Gandhinagar  INDIA Haryana
 Chandigarh  INDIA Himachal Pradesh Shimla  INDIA Kerala
 Thiruvananthapuram  INDIA Jharkhand Ranchi  INDIA Madhya Pradesh Bhopal

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit 

Re: $$Excel-Macros$$ Filter

2014-09-03 Thread Bé Trần Văn
 You attempt to 1 again.


2014-09-03 14:57 GMT+07:00 daya p princedaya2...@gmail.com:

 sir,
 not accurate
 pls  with combo box
 some changed  bcoz if any 1 change data in sheet its not correct so i hide
 that data only want 2 show form

 is i select india than next combo (state) show all state names than i
 select 1 state name than it it show its capital with 4 th combo data


Country State Capital Famous Cities  INDIA Karnataka Banglore Mysore
 INDIA Karnataka Banglore Shimogga  INDIA Maharashatra Mumbai Pune  INDIA
 Maharashatra Mumbai navi mumbai  INDIA Goa Panaji margao  INDIA Goa Panaji
 vasco  INDIA Gujarat Gandhinagar Ahmedabad  INDIA Gujarat Gandhinagar
 Vadodara


 On 30 August 2014 20:41, Bé Trần Văn betnmtdongna...@gmail.com wrote:

 B2 select and click the Filter button to filter,

 Type in C2 or D2 and click the Filter button to filter.


 2014-08-30 19:20 GMT+07:00 daya p princedaya2...@gmail.com:

 Hi Friends,

 I need help regarding  filter data
 form with 3 combo box  label

 1st combo i select INDIA
 next if i select State (in2nd combo) name as Gujrat
 3rd combo vl show Gandhinagar

   Country State Capital  INDIA Karnataka Banglore  INDIA Maharashatra
 Mumbai  INDIA Goa Panaji  INDIA Gujarat Gandhinagar  INDIA Haryana
 Chandigarh  INDIA Himachal Pradesh Shimla  INDIA Kerala
 Thiruvananthapuram  INDIA Jharkhand Ranchi  INDIA Madhya Pradesh Bhopal

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to 

$$Excel-Macros$$ Filter

2014-08-30 Thread daya p
Hi Friends,

I need help regarding  filter data
form with 3 combo box  label

1st combo i select INDIA
next if i select State (in2nd combo) name as Gujrat
3rd combo vl show Gandhinagar

  Country State Capital  INDIA Karnataka Banglore  INDIA Maharashatra Mumbai
INDIA Goa Panaji  INDIA Gujarat Gandhinagar  INDIA Haryana Chandigarh
INDIA Himachal
Pradesh Shimla  INDIA Kerala Thiruvananthapuram  INDIA Jharkhand Ranchi
INDIA Madhya Pradesh Bhopal

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ Filter

2014-08-30 Thread Bé Trần Văn
 B2 select and click the Filter button to filter,

Type in C2 or D2 and click the Filter button to filter.


2014-08-30 19:20 GMT+07:00 daya p princedaya2...@gmail.com:

 Hi Friends,

 I need help regarding  filter data
 form with 3 combo box  label

 1st combo i select INDIA
 next if i select State (in2nd combo) name as Gujrat
 3rd combo vl show Gandhinagar

   Country State Capital  INDIA Karnataka Banglore  INDIA Maharashatra
 Mumbai  INDIA Goa Panaji  INDIA Gujarat Gandhinagar  INDIA Haryana
 Chandigarh  INDIA Himachal Pradesh Shimla  INDIA Kerala Thiruvananthapuram
 INDIA Jharkhand Ranchi  INDIA Madhya Pradesh Bhopal

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


ADVANCED FILTER.rar
Description: application/rar


Re: $$Excel-Macros$$ Filter Issue

2014-08-15 Thread Bé Trần Văn
 At E2 (sheet Advanced Filter), Select  =113 300 or =10

To get results.


2014-08-14 22:12 GMT+07:00 Paul Schreiner schreiner_p...@att.net:

 I don't believe you can do it with a FORMULA.
 But you can do it with a Change Event macro.

 You would create an autoFilter for rows 5-###
 Then, record a macro in which you filter based on your two criteria
 ( 113000,  10)
 In your change event, check the value of Cell K1.
 and execute accordingly.

 If K1 has a pull-down for selection, I believe you can use a Calculation
 event to trigger the filter.

 *Paul*
 -







 *“Do all the good you can,By all the means you can,In all the ways you
 can,In all the places you can,At all the times you can,To all the people
 you can,As long as ever you can.” - John Wesley*
 -

*From:* Bill Q ronsmith...@gmail.com
 *To:* excel-macros@googlegroups.com
 *Sent:* Thursday, August 14, 2014 10:37 AM
 *Subject:* $$Excel-Macros$$ Filter Issue

 Hi Guys,

 PSA.

 What I am ultimately looking for is a formula that would automatically
 return all the information based on three different criterias.

 In cell K1 - The operator has the option of entering either A, D Or P.

 A = ALL records
 D = Only records where cell E6 onwards  113000
 P = Only records where cell E6 onwards  10

 Thank you.


 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


--
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com

Re: $$Excel-Macros$$ Filter Issue

2014-08-14 Thread Paul Schreiner
I don't believe you can do it with a FORMULA.
But you can do it with a Change Event macro.
 
You would create an autoFilter for rows 5-###
Then, record a macro in which you filter based on your two criteria
( 113000,  10) 
In your change event, check the value of Cell K1.
and execute accordingly.
 
If K1 has a pull-down for selection, I believe you can use a Calculation event 
to trigger the filter.

Paul
-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-



 From: Bill Q ronsmith...@gmail.com
To: excel-macros@googlegroups.com 
Sent: Thursday, August 14, 2014 10:37 AM
Subject: $$Excel-Macros$$ Filter Issue
  


Hi Guys, 


PSA. 


What I am ultimately looking for is a formula that would automatically return 
all the information based on three different criterias.


In cell K1 - The operator has the option of entering either A, D Or P.


A = ALL records
D = Only records where cell E6 onwards  113000 
P = Only records where cell E6 onwards  10   


Thank you.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an 
email to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ Filter on name in all sheet than paste in Master sheet

2014-08-12 Thread Paul Schreiner
First of all, you probably shouldn't make us follow a specific technique to 
accomplish your goals.
Simply explain what you want to accomplish, then allow us to recommend a 
solution.
 
By that, I mean:
I combine data from about 9 different sources.
Each data source has between 1500 and 1,014,000 records (currently)
depending on the type of transactions.
 
Using filters to select and combine data by criteria would mean that EXCEL 
has to select and copy large amounts of data to the clipboard, then paste it to 
the appropriate location.
All this moving to/from clipboard memory is time consuming.
Plus, while the macro is running, if I should select something, or attempt to 
do something that utilizes the clipboard, the macro will fail.
 
Instead, I use VBA to manage all of the data, then write it to the appropriate 
sheet.
Using this technique, the screen doesn't flash between workbooks, the clipboard 
isn't utilized, and the program runs very quickly and accurately.

So, that being said, let's get some clarification on what you want to do:


I tried looking through your macros to see what you were trying to do, but I'm 
still not sure.

There's a couple of things you COULD be doing.
For instance, you could copy the data from each of the input sheets to the 
master sheet.
Then, you might use your UserForm to select your filter criteria
(like Delhi)
The macro would then copy all of the Delhi records to Sheet1 or Sheet2?

If that is your goal, I might suggest instead of copying the worksheet to the 
current workbook, simply copy the data to the Master sheet instead.

If you could send me (directly?) a larger sample file (more rows/columns)
I'm sure I could put together a suggested set of macros quickly.


Paul
-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-



 From: Shivani Sachdeva shivanisachdeva...@gmail.com
To: excel-macros@googlegroups.com 
Sent: Tuesday, August 12, 2014 2:12 AM
Subject: Re: $$Excel-Macros$$ Filter on name in all sheet than paste in Master 
sheet
  


Hello friends,
I am very happy that all user have very helping nature, Sorry I did not 
explain all the situation.
I am trying to explain one by one.

We are getting huge data for different different sector, My idea is to save 
all Workbook in a folder.
After running that macro. Macro should load data one by one.

In sample macro 3 workbook data is loaded in to Sheet (1),Sheet (2) and Sheet 
(3).

Now I want to filter, copy and paste from all sheet to master sheet for Delhi 
sector.



Thank you all in Advance.



















On Mon, Aug 11, 2014 at 6:44 PM, Satendra kumar satendrakuma...@gmail.com 
wrote:

Hi,


Use this ??






Sub Collect_Data1() 
Dim fld As Folder
Dim fl As File
Dim k As Long
Dim wkb As Workbook 
Dim i As Long
Dim fso As New FileSystemObject
Set fld = fso.GetFolder(C:\Users\satendra.kumar\Downloads\New folder\New 
folder)
With Application
    .DisplayAlerts = False 
    .Calculation = xlCalculationManual
    .EnableEvents = False
    .ScreenUpdating = False
End With
k = 2
For Each fl In fld.Files



 
        Workbooks.Open fl
        Set wkb = ActiveWorkbook
        i = ThisWorkbook.Sheets(1).Cells(Rows.Count, A).End(xlUp).Row + 1
        wkb.Sheets(1).Range(A2:AE  wkb.Sheets(1).Cells(Rows.Count, 
E).End(xlUp).Row).Copy ThisWorkbook.Sheets(1).Cells(i, 1) 
        wkb.Close
Next fl
ThisWorkbook.Sheets(1).Columns.AutoFit
With Application
    .DisplayAlerts = True
    .Calculation = xlCalculationAutomatic
    .EnableEvents = True 
    .ScreenUpdating = True
End With
End Sub




thanks
satendra



On Mon, Aug 11, 2014 at 5:26 PM, Shivani Sachdeva 
shivanisachdeva...@gmail.com wrote:

Hello Friends,
I am trying to filter all workbook and then paste into one. I am trying 
retrieve all workbook in my current workbook.
That workbook are loaded in current workbook as Sheet1, sheet2 , sheet 3.

Now I want to make auto filter location wise into master sheet, Please help 
me.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please 
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will 
not get quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members

Re: $$Excel-Macros$$ Filter on name in all sheet than paste in Master sheet

2014-08-12 Thread Ashish Kumar
Check This !!


Regards
Ashish

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Retrive Data  Split.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Filter on name in all sheet than paste in Master sheet

2014-08-11 Thread Satendra kumar
Hi,

Use this ??



Sub Collect_Data1()
Dim fld As Folder
Dim fl As File
Dim k As Long
Dim wkb As Workbook
Dim i As Long
Dim fso As New FileSystemObject
Set fld = fso.GetFolder(C:\Users\satendra.kumar\Downloads\New folder\New
folder)
With Application
.DisplayAlerts = False
.Calculation = xlCalculationManual
.EnableEvents = False
.ScreenUpdating = False
End With
k = 2
For Each fl In fld.Files


Workbooks.Open fl
Set wkb = ActiveWorkbook
i = ThisWorkbook.Sheets(1).Cells(Rows.Count, A).End(xlUp).Row + 1
wkb.Sheets(1).Range(A2:AE  wkb.Sheets(1).Cells(Rows.Count,
E).End(xlUp).Row).Copy ThisWorkbook.Sheets(1).Cells(i, 1)
wkb.Close
Next fl
ThisWorkbook.Sheets(1).Columns.AutoFit
With Application
.DisplayAlerts = True
.Calculation = xlCalculationAutomatic
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub


thanks
satendra


On Mon, Aug 11, 2014 at 5:26 PM, Shivani Sachdeva 
shivanisachdeva...@gmail.com wrote:

 Hello Friends,
 I am trying to filter all workbook and then paste into one. I am trying
 retrieve all workbook in my current workbook.
 That workbook are loaded in current workbook as Sheet1, sheet2 , sheet
 3.

 Now I want to make auto filter location wise into master sheet, Please
 help me.

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.




-- 
Thanks  Regards
Satendra Kumar

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ Filter but exlude bad results script help!

2014-07-14 Thread Anoop K Sharma
Here you go..


On Fri, Jul 11, 2014 at 10:04 PM, Matt Painter mattr11...@gmail.com wrote:

 I pull data from a site called NDRIN.com its nd's land data base that i
 work off. Now i have a script that filters the results when i
 searchwhich is great.. but these admins dont enter the stuff right..
 alot..

 So when you look at my script its loaded with 1 page i would like to
 filter and if you run it Cntrl zyou can see it shoots an error because
 its out of parameters or something.

 You can see that i think the 6th entry the row with the Legal info
 (where the location is) is blank! so it messes me all up.

 I only care about the township section range data, because i can
 correspond it to maps. Now either they leave it blank or sometimes the
 legal row has a bunch of other nonsense in it and even sometimes some
 subdivision/lot info that i dont care about that will mess me up.

 If you delete that bad row thats blank it runs great. I need help adding a
 clause that skips or deletes these bad entrys that dont have my township
 section range info.



  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.




-- 
Regards,
Anoop
Sr. Developer
Facebook ID - https://www.facebook.com/anooop.k.sharma

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


FullPGscript.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


$$Excel-Macros$$ Filter Issue with Dates

2013-12-03 Thread Chandra Shekar
Hello,

Am trying filter data by date range suppose if date as two
different months(30/11/2013 - 01/12/2013) data is not getting filtered out.
Could you please let me know what is the issue in the code.

Thanks in advance.

Regards,

Chandru

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


FilterIssue.xlsm
Description: Binary data


$$Excel-Macros$$ Filter Data of Bold letter

2013-09-11 Thread Ashish Bhalara
Dear experts,

I have a data columnar and want filter only bold letter data, is it
possible, if yes please tell me how it done.


Thanks  regards.
Ashish Bhalara
9624111822
P*Please do not print this email unless it is absolutely necessary. Spread
environmental üawareness.♣♣♣*

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Filter Data of Bold letter

2013-09-11 Thread अनिल नारायण गवली
 Dear Ashish,

Pl share the workbook with us.

Warm Regards,
Gawli Anil.
Thanks  Regards,
Gawli Anil Narayan
Software Developer,
Abacus Software Services Pvt Ltd


On Wed, Sep 11, 2013 at 1:20 PM, Ashish Bhalara
ashishbhalar...@gmail.com wrote:
 Dear experts,

 I have a data columnar and want filter only bold letter data, is it
 possible, if yes please tell me how it done.


 Thanks  regards.
 Ashish Bhalara
 9624111822
 PPlease do not print this email unless it is absolutely necessary. Spread
 environmental üawareness.♣♣♣

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
 not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Filter Data of Bold letter

2013-09-11 Thread xlstime
Hi,

Please read below link

http://support.microsoft.com/kb/213923

.

Enjoy
Team XLS



On Wed, Sep 11, 2013 at 1:20 PM, Ashish Bhalara
ashishbhalar...@gmail.comwrote:

 Dear experts,

 I have a data columnar and want filter only bold letter data, is it
 possible, if yes please tell me how it done.


 Thanks  regards.
 Ashish Bhalara
 9624111822
 P*Please do not print this email unless it is absolutely necessary.
 Spread environmental üawareness.♣♣♣*

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Filter Data of Bold letter

2013-09-11 Thread अनिल नारायण गवली
Dear Ashish,

Pl see the attached workbook.
Is it ok?
Warm Regards,
Gawli Anil
Thanks  Regards,
Gawli Anil Narayan
Software Developer,
Abacus Software Services Pvt Ltd


On Wed, Sep 11, 2013 at 2:11 PM, अनिल नारायण गवली
gawlianil8...@gmail.com wrote:
  Dear Ashish,

 Pl share the workbook with us.

 Warm Regards,
 Gawli Anil.
 Thanks  Regards,
 Gawli Anil Narayan
 Software Developer,
 Abacus Software Services Pvt Ltd


 On Wed, Sep 11, 2013 at 1:20 PM, Ashish Bhalara
 ashishbhalar...@gmail.com wrote:
 Dear experts,

 I have a data columnar and want filter only bold letter data, is it
 possible, if yes please tell me how it done.


 Thanks  regards.
 Ashish Bhalara
 9624111822
 PPlease do not print this email unless it is absolutely necessary. Spread
 environmental üawareness.♣♣♣

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
 not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Filterbolddata.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Filter Data of Bold letter

2013-09-11 Thread Prafull Jadhav
Dear Anil and Xlstime Sir,
can we use below method?

Sub prafull()
For Each x In Range(G2:G139)
If x.Font.Bold = True Then
x.Offset(0, 1).Value = 1
End If
Next x

End Sub



On Wed, Sep 11, 2013 at 2:23 PM, अनिल नारायण गवली
gawlianil8...@gmail.comwrote:

 Dear Ashish,

 Pl see the attached workbook.
 Is it ok?
 Warm Regards,
 Gawli Anil
 Thanks  Regards,
 Gawli Anil Narayan
 Software Developer,
 Abacus Software Services Pvt Ltd


 On Wed, Sep 11, 2013 at 2:11 PM, अनिल नारायण गवली
 gawlianil8...@gmail.com wrote:
   Dear Ashish,
 
  Pl share the workbook with us.
 
  Warm Regards,
  Gawli Anil.
  Thanks  Regards,
  Gawli Anil Narayan
  Software Developer,
  Abacus Software Services Pvt Ltd
 
 
  On Wed, Sep 11, 2013 at 1:20 PM, Ashish Bhalara
  ashishbhalar...@gmail.com wrote:
  Dear experts,
 
  I have a data columnar and want filter only bold letter data, is it
  possible, if yes please tell me how it done.
 
 
  Thanks  regards.
  Ashish Bhalara
  9624111822
  PPlease do not print this email unless it is absolutely necessary.
 Spread
  environmental üawareness.♣♣♣
 
  --
  Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s
  =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
  https://www.facebook.com/discussexcel
 
  FORUM RULES
 
  1) Use concise, accurate thread titles. Poor thread titles, like Please
  Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will
  not get quick attention or may not be answered.
  2) Don't post a question in the thread of another member.
  3) Don't post questions regarding breaking or bypassing any security
  measure.
  4) Acknowledge the responses you receive, good or bad.
  5) Jobs posting is not allowed.
  6) Sharing copyrighted material and their links is not allowed.
 
  NOTE : Don't ever post confidential data in a workbook. Forum owners and
  members are not responsible for any loss.
  ---
  You received this message because you are subscribed to the Google
 Groups
  MS EXCEL AND VBA MACROS group.
  To unsubscribe from this group and stop receiving emails from it, send
 an
  email to excel-macros+unsubscr...@googlegroups.com.
  To post to this group, send email to excel-macros@googlegroups.com.
  Visit this group at http://groups.google.com/group/excel-macros.
  For more options, visit https://groups.google.com/groups/opt_out.

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE  : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Filter Data of Bold letter

2013-09-11 Thread Ashish Bhalara
Thanks Mr.Anil  others
I got it.


On Wed, Sep 11, 2013 at 5:36 PM, Prafull Jadhav prafulltjad...@gmail.comwrote:


 Dear Anil and Xlstime Sir,
 can we use below method?

 Sub prafull()
 For Each x In Range(G2:G139)
 If x.Font.Bold = True Then
 x.Offset(0, 1).Value = 1
 End If
 Next x

 End Sub



 On Wed, Sep 11, 2013 at 2:23 PM, अनिल नारायण गवली gawlianil8...@gmail.com
  wrote:

 Dear Ashish,

 Pl see the attached workbook.
 Is it ok?
 Warm Regards,
 Gawli Anil
 Thanks  Regards,
 Gawli Anil Narayan
 Software Developer,
 Abacus Software Services Pvt Ltd


 On Wed, Sep 11, 2013 at 2:11 PM, अनिल नारायण गवली
 gawlianil8...@gmail.com wrote:
   Dear Ashish,
 
  Pl share the workbook with us.
 
  Warm Regards,
  Gawli Anil.
  Thanks  Regards,
  Gawli Anil Narayan
  Software Developer,
  Abacus Software Services Pvt Ltd
 
 
  On Wed, Sep 11, 2013 at 1:20 PM, Ashish Bhalara
  ashishbhalar...@gmail.com wrote:
  Dear experts,
 
  I have a data columnar and want filter only bold letter data, is it
  possible, if yes please tell me how it done.
 
 
  Thanks  regards.
  Ashish Bhalara
  9624111822
  PPlease do not print this email unless it is absolutely necessary.
 Spread
  environmental üawareness.♣♣♣
 
  --
  Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s
  =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
  https://www.facebook.com/discussexcel
 
  FORUM RULES
 
  1) Use concise, accurate thread titles. Poor thread titles, like Please
  Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
 Advice will
  not get quick attention or may not be answered.
  2) Don't post a question in the thread of another member.
  3) Don't post questions regarding breaking or bypassing any security
  measure.
  4) Acknowledge the responses you receive, good or bad.
  5) Jobs posting is not allowed.
  6) Sharing copyrighted material and their links is not allowed.
 
  NOTE : Don't ever post confidential data in a workbook. Forum owners
 and
  members are not responsible for any loss.
  ---
  You received this message because you are subscribed to the Google
 Groups
  MS EXCEL AND VBA MACROS group.
  To unsubscribe from this group and stop receiving emails from it, send
 an
  email to excel-macros+unsubscr...@googlegroups.com.
  To post to this group, send email to excel-macros@googlegroups.com.
  Visit this group at http://groups.google.com/group/excel-macros.
  For more options, visit https://groups.google.com/groups/opt_out.

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE  : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit 

$$Excel-Macros$$ Filter to work in tandem

2013-07-18 Thread Eugene Bernard
I have two excel workbooks in open condition. If  I filter a value of one
particular
column in first workbook, i need the same filter condition should get
applied to
the other open worksheet also. How to achieve this. Please share me the
macro or codes.

Thanks
Eugene

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.




$$Excel-Macros$$ Filter on Row to hide column

2013-05-10 Thread Amit Desai (MERU)
Dear Friends,

Please help.

I need a macro or any other solution to put a filter in a row number 3 of the 
attached file.

I have few columns as Wk 1, Wk 2, Wk 3  Month (with other columns). I wants to 
see all the columns with column head as say Wk 1 in row 3. Attached is the 
sample file.

Best Regards,
Amit Desai
+91 98672 32534



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Filter on Row to hide column.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Filter on Row to hide column

2013-05-10 Thread David Grugeon
You cannot filter horizontally.  You could have a macro to hide all columns
from column d onwards which were not Week1, if that is what you want.

Regards
David Grugeon



On 10 May 2013 16:28, Amit Desai (MERU) amit.de...@merucabs.com wrote:

  Dear Friends,

 ** **

 Please help.

 ** **

 I need a macro or any other solution to put a filter in a row number 3 of
 the attached file.

 ** **

 I have few columns as Wk 1, Wk 2, Wk 3  Month (with other columns). I
 wants to see all the columns with column head as say “Wk 1” in row 3.
 Attached is the sample file.

 ** **

 Best Regards,

 Amit Desai

 +91 98672 32534

 ** **

 --
 Disclaimer: This message and its attachments contain confidential
 information and may also contain legally privileged information. This
 message is intended solely for the named addressee. If you are not the
 addressee indicated in this message (or authorized to receive for
 addressee), you may not copy or deliver any part of this message or its
 attachments to anyone or use any part of this message or its attachments.
 Rather, you should permanently delete this message and its attachments (and
 all copies) from your system and kindly notify the sender by reply e-mail.
 Any content of this message and its attachments that does not relate to the
 official business of Meru Cab Company Pvt. Ltd. must be taken not to have
 been sent or endorsed by any of them. Email communications are not private
 and no warranty is made that e-mail communications are timely, secure or
 free from computer virus or other defect.

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




RE: $$Excel-Macros$$ Filter on Row to hide column

2013-05-10 Thread Amit Desai (MERU)
I am okay to have a macro too.. but in that case it should provide me solution 
to select row number  column heads in that row numbers.

Best Regards,
Amit Desai
+91 98672 32534

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of David Grugeon
Sent: 10 May 2013 12:30
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Filter on Row to hide column

You cannot filter horizontally.  You could have a macro to hide all columns 
from column d onwards which were not Week1, if that is what you want.

Regards
David Grugeon


On 10 May 2013 16:28, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
Dear Friends,

Please help.

I need a macro or any other solution to put a filter in a row number 3 of the 
attached file.

I have few columns as Wk 1, Wk 2, Wk 3  Month (with other columns). I wants to 
see all the columns with column head as say Wk 1 in row 3. Attached is the 
sample file.

Best Regards,
Amit Desai
+91 98672 32534tel:%2B91%2098672%2032534



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros%2bunsubscr...@googlegroups.com.
To post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.



--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy

RE: $$Excel-Macros$$ Filter on Row to hide column

2013-05-10 Thread Amit Desai (MERU)
Dear Anil,

This one is perfectly working. Can you please help me how shall I put this in 
my main file?

Best Regards,
Amit Desai
+91 98672 32534

From: अनिल नारायण गवली [mailto:gawlianil8...@gmail.com]
Sent: 10 May 2013 15:23
To: excel-macros@googlegroups.com; Amit Desai (MERU)
Subject: Re: $$Excel-Macros$$ Filter on Row to hide column

Dear Amit,

Pl see the attachment.

Warm Regards,
Gawli Anil

On Fri, May 10, 2013 at 12:32 PM, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
I am okay to have a macro too.. but in that case it should provide me solution 
to select row number  column heads in that row numbers.

Best Regards,
Amit Desai
+91 98672 32534tel:%2B91%2098672%2032534

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.commailto:excel-macros@googlegroups.com] On 
Behalf Of David Grugeon
Sent: 10 May 2013 12:30
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Filter on Row to hide column

You cannot filter horizontally.  You could have a macro to hide all columns 
from column d onwards which were not Week1, if that is what you want.

Regards
David Grugeon


On 10 May 2013 16:28, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
Dear Friends,

Please help.

I need a macro or any other solution to put a filter in a row number 3 of the 
attached file.

I have few columns as Wk 1, Wk 2, Wk 3  Month (with other columns). I wants to 
see all the columns with column head as say “Wk 1” in row 3. Attached is the 
sample file.

Best Regards,
Amit Desai
+91 98672 32534tel:%2B91%2098672%2032534



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros%2bunsubscr...@googlegroups.com.
To post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.



--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
excel-macros+unsubscr

RE: $$Excel-Macros$$ Filter based on coulmns

2013-04-28 Thread Amit Desai (MERU)
Dear Paul,

Thanks. But since the file is huge  having many columns I am not able to move 
entire sheet in transposed form...infact this sheet is fetching data from other 
sheets.

I am trying to search something on line.. let me see if I can get.

Best Regards,
Amit Desai

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Paul Schreiner
Sent: 27 April 2013 18:34
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Filter based on coulmns

So... you're saying copy/paste traspose isn't an option and you want a macro.

do you know anything about macros?

or are you wanting someone to write one for you?

either way, if you want help with a macro, you'll have to provide WAY more 
information than you've given.


Paul

-
Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can. - John Wesley
-



From: Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Sent: Sat, April 27, 2013 4:34:49 AM
Subject: RE: $$Excel-Macros$$ Filter based on coulmns
You are right.

Can you please suggest some macro for that?

Best Regards,
Amit Desai

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.com] On Behalf Of Paul Schreiner
Sent: 26 April 2013 17:17
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Filter based on coulmns

Your original statement is not entirely accurate.
Excel's Autofilter is techically applying a filter to ROWS based on the value 
in a COLUMN (or value of a cell in that row)
What it is actually doing is simply hiding any row that does not meet the 
filter criteria for a specific column.

What you SEEM to be asking is if you can hide columns based on the value of 
cells in a ROW.

Excel has no built-in functionality to do that.

Your options are:
Copy and paste/transpose the data into another sheet and apply AutoFilter.

Or write a macro that hides columns based on your criteria.


Paul

-
Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can. - John Wesley
-



From: Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Sent: Fri, April 26, 2013 7:11:12 AM
Subject: RE: $$Excel-Macros$$ Filter based on coulmns
Can someone please answer?

Best Regards,
Amit Desai

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.com] On Behalf Of Amit Desai (MERU)
Sent: 22 April 2013 18:15
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Filter based on coulmns

Dear Friends,

In general we filter data based on the contents in rows. I would like to know 
if we have any options to filter data columns.

Could you please help.

Best Regards,
Amit Desai



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material

RE: $$Excel-Macros$$ Filter based on coulmns

2013-04-27 Thread Amit Desai (MERU)
You are right.

Can you please suggest some macro for that?

Best Regards,
Amit Desai

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Paul Schreiner
Sent: 26 April 2013 17:17
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Filter based on coulmns

Your original statement is not entirely accurate.
Excel's Autofilter is techically applying a filter to ROWS based on the value 
in a COLUMN (or value of a cell in that row)
What it is actually doing is simply hiding any row that does not meet the 
filter criteria for a specific column.

What you SEEM to be asking is if you can hide columns based on the value of 
cells in a ROW.

Excel has no built-in functionality to do that.

Your options are:
Copy and paste/transpose the data into another sheet and apply AutoFilter.

Or write a macro that hides columns based on your criteria.


Paul

-
Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can. - John Wesley
-



From: Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Sent: Fri, April 26, 2013 7:11:12 AM
Subject: RE: $$Excel-Macros$$ Filter based on coulmns
Can someone please answer?

Best Regards,
Amit Desai

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.com] On Behalf Of Amit Desai (MERU)
Sent: 22 April 2013 18:15
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Filter based on coulmns

Dear Friends,

In general we filter data based on the contents in rows. I would like to know 
if we have any options to filter data columns.

Could you please help.

Best Regards,
Amit Desai



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab

Re: $$Excel-Macros$$ Filter based on coulmns

2013-04-27 Thread Paul Schreiner
So... you're saying copy/paste traspose isn't an option and you want a macro.

do you know anything about macros?

or are you wanting someone to write one for you?

either way, if you want help with a macro, you'll have to provide WAY more 
information than you've given.
 
Paul
-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-





From: Amit Desai (MERU) amit.de...@merucabs.com
To: excel-macros@googlegroups.com
Sent: Sat, April 27, 2013 4:34:49 AM
Subject: RE: $$Excel-Macros$$ Filter based on coulmns


You are right.
 
Can you please suggest some macro for that?
 
Best Regards,
Amit Desai
 
From:excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Paul Schreiner
Sent: 26 April 2013 17:17
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Filter based on coulmns
 
Your original statement is not entirely accurate.
Excel's Autofilter is techically applying a filter to ROWS based on the value 
in 
a COLUMN (or value of a cell in that row)
What it is actually doing is simply hiding any row that does not meet the 
filter 
criteria for a specific column.
 
What you SEEM to be asking is if you can hide columns based on the value of 
cells in a ROW.
 
Excel has no built-in functionality to do that.
 
Your options are:
Copy and paste/transpose the data into another sheet and apply AutoFilter.
 
Or write a macro that hides columns based on your criteria.
 
Paul
-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-
 
 



From:Amit Desai (MERU) amit.de...@merucabs.com
To: excel-macros@googlegroups.com
Sent: Fri, April 26, 2013 7:11:12 AM
Subject: RE: $$Excel-Macros$$ Filter based on coulmns
Can someone please answer?
 
Best Regards,
Amit Desai
 
From:excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 22 April 2013 18:15
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Filter based on coulmns
 
Dear Friends,
 
In general we filter data based on the contents in rows. I would like to know 
if 
we have any options to filter data columns. 

 
Could you please help.
 
Best Regards,
Amit Desai
 
 



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are 
not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members 
are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 
 



Disclaimer: This message and its attachments contain confidential information 
and may also contain

RE: $$Excel-Macros$$ Filter based on coulmns

2013-04-26 Thread Amit Desai (MERU)
Can someone please answer?

Best Regards,
Amit Desai

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 22 April 2013 18:15
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Filter based on coulmns

Dear Friends,

In general we filter data based on the contents in rows. I would like to know 
if we have any options to filter data columns.

Could you please help.

Best Regards,
Amit Desai



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: $$Excel-Macros$$ Filter based on coulmns

2013-04-26 Thread Paul Schreiner
Your original statement is not entirely accurate.
Excel's Autofilter is techically applying a filter to ROWS based on the value 
in 
a COLUMN (or value of a cell in that row)
What it is actually doing is simply hiding any row that does not meet the 
filter 
criteria for a specific column.

What you SEEM to be asking is if you can hide columns based on the value of 
cells in a ROW.

Excel has no built-in functionality to do that.

Your options are:
Copy and paste/transpose the data into another sheet and apply AutoFilter.

Or write a macro that hides columns based on your criteria.
 
Paul
-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-





From: Amit Desai (MERU) amit.de...@merucabs.com
To: excel-macros@googlegroups.com
Sent: Fri, April 26, 2013 7:11:12 AM
Subject: RE: $$Excel-Macros$$ Filter based on coulmns


Can someone please answer?
 
Best Regards,
Amit Desai
 
From:excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 22 April 2013 18:15
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Filter based on coulmns
 
Dear Friends,
 
In general we filter data based on the contents in rows. I would like to know 
if 
we have any options to filter data columns. 

 
Could you please help.
 
Best Regards,
Amit Desai
 
 



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are 
not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members 
are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are 
not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.
-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please

$$Excel-Macros$$ Filter based on coulmns

2013-04-22 Thread Amit Desai (MERU)
Dear Friends,

In general we filter data based on the contents in rows. I would like to know 
if we have any options to filter data columns.

Could you please help.

Best Regards,
Amit Desai



Disclaimer: This message and its attachments contain confidential information 
and may also contain legally privileged information. This message is intended 
solely for the named addressee. If you are not the addressee indicated in this 
message (or authorized to receive for addressee), you may not copy or deliver 
any part of this message or its attachments to anyone or use any part of this 
message or its attachments. Rather, you should permanently delete this message 
and its attachments (and all copies) from your system and kindly notify the 
sender by reply e-mail. Any content of this message and its attachments that 
does not relate to the official business of Meru Cab Company Pvt. Ltd. must be 
taken not to have been sent or endorsed by any of them. Email communications 
are not private and no warranty is made that e-mail communications are timely, 
secure or free from computer virus or other defect.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: $$Excel-Macros$$ Filter Data based on Criteria

2013-04-11 Thread C.G.Kumar
The macro provided does not serve the purpose. It does not filter data
based on condition provided in row 1:2.

The data needs to filtered on the same place and not on different location.
Output given in sample sheet was only for checking the results .

I hope you can modify the results .:)


On Wed, Apr 10, 2013 at 6:03 PM, xlstime xlst...@gmail.com wrote:

 Hi CG,

 Please try to use Advance filter and macro recording.PFA




 .

 Enjoy
 Team XLS



 On Wed, Apr 10, 2013 at 1:58 PM, C.G.Kumar kumar.bemlmum...@gmail.comwrote:

 Hi,


 I need to filter a long list in excel based on criteria (Cell Values). I
 can do it manually by selecting filter and then selecting manually each
 criteria like Name = Adag, Amount  5000 and so on  .


 Is there any way where the list get auto filtered based on criteria
 mentioned at the top of the list or something alike.


 Attached sample workbook with Sample Data, output expected.


 Thanks for understanding.

 C.G.Kumar

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




$$Excel-Macros$$ Filter Data based on Criteria

2013-04-10 Thread C.G.Kumar
Hi,


I need to filter a long list in excel based on criteria (Cell Values). I
can do it manually by selecting filter and then selecting manually each
criteria like Name = Adag, Amount  5000 and so on  .


Is there any way where the list get auto filtered based on criteria
mentioned at the top of the list or something alike.


Attached sample workbook with Sample Data, output expected.


Thanks for understanding.

C.G.Kumar

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Custom Filter bases on cell values.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Filter Data based on Criteria

2013-04-10 Thread Chaya
Dear Kumar,

Please find the attachment. Might it will help you.
Just select the item code from the A2 (cell) drop down and
click on the button (filter).



Regards,
Chaya


On Wed, Apr 10, 2013 at 1:58 PM, C.G.Kumar kumar.bemlmum...@gmail.comwrote:

 Hi,


 I need to filter a long list in excel based on criteria (Cell Values). I
 can do it manually by selecting filter and then selecting manually each
 criteria like Name = Adag, Amount  5000 and so on  .


 Is there any way where the list get auto filtered based on criteria
 mentioned at the top of the list or something alike.


 Attached sample workbook with Sample Data, output expected.


 Thanks for understanding.

 C.G.Kumar

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Custom Filter bases on cell values-Updated.xlsm
Description: Binary data


Re: $$Excel-Macros$$ Filter Data based on Criteria

2013-04-10 Thread xlstime
Hi CG,

Please try to use Advance filter and macro recording.PFA




.

Enjoy
Team XLS



On Wed, Apr 10, 2013 at 1:58 PM, C.G.Kumar kumar.bemlmum...@gmail.comwrote:

 Hi,


 I need to filter a long list in excel based on criteria (Cell Values). I
 can do it manually by selecting filter and then selecting manually each
 criteria like Name = Adag, Amount  5000 and so on  .


 Is there any way where the list get auto filtered based on criteria
 mentioned at the top of the list or something alike.


 Attached sample workbook with Sample Data, output expected.


 Thanks for understanding.

 C.G.Kumar

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Copy of Custom Filter bases on cell values.xlsm
Description: Binary data


$$Excel-Macros$$ Filter

2012-01-02 Thread Aamir Shahzad
How to use the auto filter for only Text.
How to use the auto filter for only Numbers

-- 

Regards,

Aamir Shahzad

-- 
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Filter

2012-01-02 Thread NOORAIN ANSARI
Dear Aamir,

Please see attached sheet...


-- 
Thanks  regards,
Noorain Ansari
 *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/
*http://noorain-ansari.blogspot.com/* http://noorain-ansari.blogspot.com/

On Mon, Jan 2, 2012 at 11:09 PM, Aamir Shahzad aamirshahza...@gmail.comwrote:

 How to use the auto filter for only Text.
 How to use the auto filter for only Numbers

 --

 Regards,

 Aamir Shahzad

 --
 FORUM RULES (934+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Filter_Example.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ filter out the cells with a particular formula

2011-08-19 Thread dguillett1

Sub FOREACHTRUE()
mc = h 'change to column with formula
For i = 2 To Cells(Rows.Count, mc).End(xlUp).Row
If InStr(Cells(i, mc).Formula, TRUE) Then _
Rows(i).Hidden = True
Next
End Sub
From: ashish koul 
Sent: Thursday, August 18, 2011 8:05 PM
To: excel-macros@googlegroups.com 
Subject: Re: $$Excel-Macros$$ filter out the cells with a particular formula

see if it helps


On Fri, Aug 19, 2011 at 6:24 AM, Sara Lee lee.sar...@gmail.com wrote:

  hi 

  how do i filter out those cells in a column which has a particular vlookup 
formula in them... for example in one column in a table, i have vlook up fomula 
set up for the entire column ... some of the cells have vlook up( with true 
parameter) and some with (false parameter) How do i filter only those cells 
which have true parameter? any macro ?

  Thanks
  -- 
  
--
  Some important links for excel users:
  1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
  2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
  3. Excel tutorials at http://www.excel-macros.blogspot.com
  4. Learn VBA Macros at http://www.quickvba.blogspot.com
  5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

  To post to this group, send email to excel-macros@googlegroups.com
   
  
  Like our page on facebook , Just follow below link
  http://www.facebook.com/discussexcel





-- 

Regards

Ashish Koul
akoul.blogspot.com
http://akoul.posterous.com/

akoul.wordpress.com
My Linkedin Profile

P Before printing, think about the environment.

 

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com
 

Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


RE: $$Excel-Macros$$ filter out the cells with a particular formula

2011-08-19 Thread Rajan_Verma
Try this

 

Sub Filter()

Application.ScreenUpdating = False

On Error Resume Next

Dim Rec As Double

Dim rng As Range

Set rng = Selection

Rec = Range(A6).End(xlUp).Row

For i = 1 To Rec

If InStr(rng.Cells(i, 1).Formula, Range(C1).Value) Then

rng.Cells(i, 0).EntireRow.Hidden = True

End If

Next



Application.ScreenUpdating = True

End Sub

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Sara L
Sent: Friday, August 19, 2011 6:24 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ filter out the cells with a particular formula

 

hi 

how do i filter out those cells in a column which has a particular vlookup
formula in them... for example in one column in a table, i have vlook up
fomula set up for the entire column ... some of the cells have vlook up(
with true parameter) and some with (false parameter) How do i filter
only those cells which have true parameter? any macro ?

Thanks

-- 

--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com
 

Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


Filter.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


$$Excel-Macros$$ filter out the cells with a particular formula

2011-08-18 Thread Sara Lee
hi

how do i filter out those cells in a column which has a particular vlookup
formula in them... for example in one column in a table, i have vlook up
fomula set up for the entire column ... some of the cells have vlook up(
with true parameter) and some with (false parameter) How do i filter
only those cells which have true parameter? any macro ?

Thanks

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


Re: $$Excel-Macros$$ filter out the cells with a particular formula

2011-08-18 Thread ashish koul
see if it helps

On Fri, Aug 19, 2011 at 6:24 AM, Sara Lee lee.sar...@gmail.com wrote:

 hi

 how do i filter out those cells in a column which has a particular vlookup
 formula in them... for example in one column in a table, i have vlook up
 fomula set up for the entire column ... some of the cells have vlook up(
 with true parameter) and some with (false parameter) How do i filter
 only those cells which have true parameter? any macro ?

 Thanks

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel




-- 
*Regards*
* *
*Ashish Koul*
*akoul*.*blogspot*.com http://akoul.blogspot.com/
http://akoul.posterous.com/
*akoul*.wordpress.com http://akoul.wordpress.com/
My Linkedin Profile http://in.linkedin.com/pub/ashish-koul/10/400/830


P Before printing, think about the environment.

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


check par.xlsm
Description: Binary data


Re: $$Excel-Macros$$ filter out the cells with a particular formula

2011-08-18 Thread Sara Lee
Thanks Ashish... but how do i filter out column I such that i extract values
similar to a ( which use 0) and not b. Say suppose column I has 2cell
records ... ?

On Thu, Aug 18, 2011 at 9:05 PM, ashish koul koul.ash...@gmail.com wrote:

 see if it helps


 On Fri, Aug 19, 2011 at 6:24 AM, Sara Lee lee.sar...@gmail.com wrote:

 hi

 how do i filter out those cells in a column which has a particular vlookup
 formula in them... for example in one column in a table, i have vlook up
 fomula set up for the entire column ... some of the cells have vlook up(
 with true parameter) and some with (false parameter) How do i filter
 only those cells which have true parameter? any macro ?

 Thanks

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel




 --
 *Regards*
 * *
 *Ashish Koul*
 *akoul*.*blogspot*.com http://akoul.blogspot.com/
 http://akoul.posterous.com/
  *akoul*.wordpress.com http://akoul.wordpress.com/
 My Linkedin Profile http://in.linkedin.com/pub/ashish-koul/10/400/830


 P Before printing, think about the environment.


  --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


Re: $$Excel-Macros$$ filter out the cells with a particular formula

2011-08-18 Thread ashish koul
lets suppose col i is having formula

type in   j2 = checkpar(I2)

then apply fill down


use flliter and choose  You have choosed 0 in j  it will show all the
cells with paramter 0 in col i.





On Fri, Aug 19, 2011 at 7:06 AM, Sara Lee lee.sar...@gmail.com wrote:

 Thanks Ashish... but how do i filter out column I such that i extract
 values similar to a ( which use 0) and not b. Say suppose column I has
 2cell records ... ?


 On Thu, Aug 18, 2011 at 9:05 PM, ashish koul koul.ash...@gmail.comwrote:

 see if it helps


 On Fri, Aug 19, 2011 at 6:24 AM, Sara Lee lee.sar...@gmail.com wrote:

 hi

 how do i filter out those cells in a column which has a particular
 vlookup formula in them... for example in one column in a table, i have
 vlook up fomula set up for the entire column ... some of the cells have
 vlook up( with true parameter) and some with (false parameter) How do i
 filter only those cells which have true parameter? any macro ?

 Thanks

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel




 --
 *Regards*
 * *
 *Ashish Koul*
 *akoul*.*blogspot*.com http://akoul.blogspot.com/
 http://akoul.posterous.com/
  *akoul*.wordpress.com http://akoul.wordpress.com/
 My Linkedin Profile http://in.linkedin.com/pub/ashish-koul/10/400/830


 P Before printing, think about the environment.


  --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel


  --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel




-- 
*Regards*
* *
*Ashish Koul*
*akoul*.*blogspot*.com http://akoul.blogspot.com/
http://akoul.posterous.com/
*akoul*.wordpress.com http://akoul.wordpress.com/
My Linkedin Profile http://in.linkedin.com/pub/ashish-koul/10/400/830


P Before printing, think about the environment.

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


$$Excel-Macros$$ filter of nonblank cell

2011-07-25 Thread vickey
Is thereany way to filter / copy nonblank values toanother sheet.

considering followng example.

ID  NAME
1   
2   BBB
3   CCC
4
5
6
7   DDD
8   FFF
9   EE





ID  NAME
1   
2   BBB
3   CCC
7   DDD
8   FFF
9   EE



thanks in advance

vikas

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


RE: $$Excel-Macros$$ filter of nonblank cell

2011-07-25 Thread Rajan_Verma
Try This

Sub CopyNonBlankRow()
On Error Resume Next
Dim cell As Range
Dim rng As Range
Set rng = ActiveSheet.Range(B2:B  ActiveSheet.UsedRange.Rows.Count)
Sheets(Data).Delete
Sheets.Add.Name = Data

For Each cell In rng
If cell.Value   Then cell.EntireRow.Copy
Sheets(Data).Range(A  Sheets(Data).Range(A65536).End(xlUp).Row + 1)
Next
End Sub



-Original Message-
From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of vickey
Sent: Monday, July 25, 2011 7:42 PM
To: MS EXCEL AND VBA MACROS
Subject: $$Excel-Macros$$ filter of nonblank cell

Is thereany way to filter / copy nonblank values toanother sheet.

considering followng example.

ID  NAME
1   
2   BBB
3   CCC
4
5
6
7   DDD
8   FFF
9   EE





ID  NAME
1   
2   BBB
3   CCC
7   DDD
8   FFF
9   EE



thanks in advance

vikas

-- 

--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


Re: $$Excel-Macros$$ filter of nonblank cell

2011-07-25 Thread vickey
thanks but nonblank data is not being copied in data sheet.



On Jul 25, 7:29 pm, Rajan_Verma rajanverma1...@gmail.com wrote:
 Try This

 Sub CopyNonBlankRow()
 On Error Resume Next
 Dim cell As Range
 Dim rng As Range
     Set rng = ActiveSheet.Range(B2:B  ActiveSheet.UsedRange.Rows.Count)
     Sheets(Data).Delete
     Sheets.Add.Name = Data

         For Each cell In rng
         If cell.Value   Then cell.EntireRow.Copy
 Sheets(Data).Range(A  Sheets(Data).Range(A65536).End(xlUp).Row + 1)
         Next
 End Sub



 -Original Message-
 From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]

 On Behalf Of vickey
 Sent: Monday, July 25, 2011 7:42 PM
 To: MS EXCEL AND VBA MACROS
 Subject: $$Excel-Macros$$ filter of nonblank cell

 Is thereany way to filter / copy nonblank values toanother sheet.

 considering followng example.

 ID      NAME
 1       
 2       BBB
 3       CCC
 4
 5
 6
 7       DDD
 8       FFF
 9       EE

 ID      NAME
 1       
 2       BBB
 3       CCC
 7       DDD
 8       FFF
 9       EE

 thanks in advance

 vikas

 --
 ---­-
 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links 
 :http://twitter.com/exceldailytip
 2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials athttp://www.excel-macros.blogspot.com
 4. Learn VBA Macros athttp://www.quickvba.blogspot.com
 5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below 
 linkhttp://www.facebook.com/discussexcel- Hide quoted text -

 - Show quoted text -

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


RE: $$Excel-Macros$$ filter of nonblank cell

2011-07-25 Thread Rajan_Verma
Try this

Sub CopyNonBlankRow()
On Error Resume Next
 Dim cell As Range
 Dim rng As Range
 Set rng = Sheets(sheet1).Range(B2:B 
Sheets(Sheet1).UsedRange.Rows.Count)
 Sheets(Data).Delete
 Sheets.Add.Name = Data

 For Each cell In rng.Cells
 If cell.Value   Then
 cell.EntireRow.Copy
 Sheets(Data).Activate
 Range(A  Sheets(Data).Range(A1).End(xlUp).Row +
1).Select
 ActiveSheet.Paste
 Application.CutCopyMode = False
 End If
 Next
 End Sub



-Original Message-
From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of vickey
Sent: Monday, July 25, 2011 8:13 PM
To: MS EXCEL AND VBA MACROS
Subject: Re: $$Excel-Macros$$ filter of nonblank cell

thanks but nonblank data is not being copied in data sheet.



On Jul 25, 7:29 pm, Rajan_Verma rajanverma1...@gmail.com wrote:
 Try This

 Sub CopyNonBlankRow()
 On Error Resume Next
 Dim cell As Range
 Dim rng As Range
     Set rng = ActiveSheet.Range(B2:B  ActiveSheet.UsedRange.Rows.Count)
     Sheets(Data).Delete
     Sheets.Add.Name = Data

         For Each cell In rng
         If cell.Value   Then cell.EntireRow.Copy
 Sheets(Data).Range(A  Sheets(Data).Range(A65536).End(xlUp).Row +
1)
         Next
 End Sub



 -Original Message-
 From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]

 On Behalf Of vickey
 Sent: Monday, July 25, 2011 7:42 PM
 To: MS EXCEL AND VBA MACROS
 Subject: $$Excel-Macros$$ filter of nonblank cell

 Is thereany way to filter / copy nonblank values toanother sheet.

 considering followng example.

 ID      NAME
 1       
 2       BBB
 3       CCC
 4
 5
 6
 7       DDD
 8       FFF
 9       EE

 ID      NAME
 1       
 2       BBB
 3       CCC
 7       DDD
 8       FFF
 9       EE

 thanks in advance

 vikas

 --

---­
-
 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links
:http://twitter.com/exceldailytip
 2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials athttp://www.excel-macros.blogspot.com
 4. Learn VBA Macros athttp://www.quickvba.blogspot.com
 5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below
linkhttp://www.facebook.com/discussexcel- Hide quoted text -

 - Show quoted text -

-- 

--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


Re: $$Excel-Macros$$ filter of nonblank cell

2011-07-25 Thread Mahesh parab
Hi

find attach as per your requirement.

try :

Sub test()
Sheet1.UsedRange.Copy
Sheet2.Select
Sheet2.Range(A1).PasteSpecial Paste:=xlPasteValues
On Error Resume Next
Columns(B).SpecialCells(xlCellTypeBlanks).Select
Selection.EntireRow.Delete
On Error GoTo 0
End Sub

On Mon, Jul 25, 2011 at 7:42 PM, vickey vikasda...@gmail.com wrote:

 Is thereany way to filter / copy nonblank values toanother sheet.

 considering followng example.

 ID  NAME
 1   
 2   BBB
 3   CCC
 4
 5
 6
 7   DDD
 8   FFF
 9   EE





 ID  NAME
 1   
 2   BBB
 3   CCC
 7   DDD
 8   FFF
 9   EE



 thanks in advance

 vikas

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


Sample sheet_2507.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ filter of nonblank cell

2011-07-25 Thread XLS S
use filter and select non blank  then select data press alt+; then copy and
paste


On Mon, Jul 25, 2011 at 7:42 PM, vickey vikasda...@gmail.com wrote:

 Is thereany way to filter / copy nonblank values toanother sheet.

 considering followng example.

 ID  NAME
 1   
 2   BBB
 3   CCC
 4
 5
 6
 7   DDD
 8   FFF
 9   EE





 ID  NAME
 1   
 2   BBB
 3   CCC
 7   DDD
 8   FFF
 9   EE



 thanks in advance

 vikas

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/discussexcel


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel


$$Excel-Macros$$ Filter rows based on a list of values

2010-12-23 Thread Hole
Hi there,

I need to filter rows in a sheet based on a columns matching a list of
values.
I've tried to play advanced filter but it doesn't seem to fit my
needs...

Any idea?

Many thanks in advance anyway!!!

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


Re: $$Excel-Macros$$ Filter Issue

2010-12-17 Thread Chandra Shekar
Hi,

Is this code for my problem. Please let me know.

Thanks

Chandra Shekar
On Fri, Dec 17, 2010 at 7:49 AM, ashish koul koul.ash...@gmail.com wrote:

 try this code

 Sub filterdata()
 Application.DisplayAlerts = False
 Dim i, j As Long
 For i = 2 To 6
 Sheets(Sheets(1).Cells(i, 1).Text).Select
 Range(a65356).Select
  Selection.End(xlUp).Select
 ActiveCell.Offset(1, 0).Value = Sheets(1).Cells(i, 3).Value
 ActiveCell.Offset(1, 1).Value = Sheets(1).Cells(i, 5).Value
 ActiveCell.Offset(1, 2).Value = Sheets(1).Cells(i, 4).Value
 ActiveCell.Offset(1, 3).Value = Sheets(1).Cells(i, 1).Value
 Next i
 Application.DisplayAlerts = True
 End Sub


   On Thu, Dec 16, 2010 at 5:38 PM, Chandra Shekar 
 chandrashekarb@gmail.com wrote:

 Hello,

 I have attached sample workbook I need a macro to do this task. In *
 Sheet1* I got Input Data based on *column A* I need to separate
 worksheets as shown in workbook.

 Thank you.

 Chandra Shekar

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link

 http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts




 --
 *Regards*
 * *
 *Ashish Koul*
 *akoul*.*blogspot*.com http://akoul.blogspot.com/
 *akoul*.wordpress.com http://akoul.wordpress.com/
 My Linkedin Profile http://in.linkedin.com/pub/ashish-koul/10/400/830


 P Before printing, think about the environment.


 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


$$Excel-Macros$$ Filter Issue

2010-12-16 Thread Chandra Shekar
Hello,

I have attached sample workbook I need a macro to do this task. In
*Sheet1*I got Input Data based on
*column A* I need to separate worksheets as shown in workbook.

Thank you.

Chandra Shekar

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


Filter.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Filter criteria of one row - show previous row...

2010-10-26 Thread NOORAIN ANSARI
Dear Robert,

Please provide sample sheet...if possible..


Thanks  regards,
Noorain Ansari

On Mon, Oct 25, 2010 at 9:42 AM, Robert Jacobs robertjacob...@gmail.comwrote:

 Thanks in advance to the expert that can help me


 I have an excel document with thousands of records, each record has a
 message associated with it that is listed on the row beneath that
 record... i.e.

 Record -SPR   Office_Loc
 123456  FS_FTW
 234567
 Message - Link is already active. No updates allowed SPR
 Record -SPR   Office_Loc
 654321  FS_FTW
 765432
 Message - From SKU is already in an existing linkage SPR
 Record -SPR   Office_Loc
 258456  FS_FTW
 654852
 Message - Link is already active. No updates allowed SPR


 What I need to do is filter this excel sheet to only show me the
 records with a message reading From SKU is already in an existing
 linkage SPR - I am very new to Excel, and know how to auto filter,
 but when I do that, I only get the Message line, and I really need
 the line above it... Can anybody help?  Thanks!

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 Like our page on facebook , Just follow below link
 http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts




-- 
Thanks  regards,
Noorain Ansari

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


$$Excel-Macros$$ Filter criteria of one row - show previous row...

2010-10-25 Thread Robert Jacobs
Thanks in advance to the expert that can help me


I have an excel document with thousands of records, each record has a
message associated with it that is listed on the row beneath that
record... i.e.

Record -SPR   Office_Loc
123456  FS_FTW
234567
Message - Link is already active. No updates allowed SPR
Record -SPR   Office_Loc
654321  FS_FTW
765432
Message - From SKU is already in an existing linkage SPR
Record -SPR   Office_Loc
258456  FS_FTW
654852
Message - Link is already active. No updates allowed SPR


What I need to do is filter this excel sheet to only show me the
records with a message reading From SKU is already in an existing
linkage SPR - I am very new to Excel, and know how to auto filter,
but when I do that, I only get the Message line, and I really need
the line above it... Can anybody help?  Thanks!

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


$$Excel-Macros$$ Filter Query

2010-05-01 Thread karthikeyan
Hi All,

I have create a filter through macro.Crietiria=100,Filed=3

Example:-
col-A col-B  col-C
NameId Amt
X   1   100
Y   2   200
Z   3   300

Suppose , Insert one column between col A and colB . filter not
working properly?Pls advice.

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe


Re: $$Excel-Macros$$ Filter Query

2010-05-01 Thread Mahesh parab
Hi karthikeyan

Before you adding the column code Field:=3, Criteria1:==100
it will filter Column C where Amount it equal to 100

but when you add the column between A  B your Amount column will shift to
column D
this time code will be Field:=4, Criteria1:==100

On Sat, May 1, 2010 at 1:21 PM, karthikeyan
karthikeyansankar...@gmail.comwrote:

 Hi All,

 I have create a filter through macro.Crietiria=100,Filed=3

 Example:-
 col-A col-B  col-C
 NameId Amt
 X   1   100
 Y   2   200
 Z   3   300

 Suppose , Insert one column between col A and colB . filter not
 working properly?Pls advice.

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 HELP US GROW !!

 We reach over 6,800 subscribers worldwide and receive many nice notes about
 the learning and support from the group.Let friends and co-workers know they
 can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe


Re: $$Excel-Macros$$ FILTER

2010-04-11 Thread Ayush
Hi Vinod,

It is very simple. Just select the 1st range and apply the filter and
same for 2nd range.

Please let me know if you have more questions.

Best regards,
Ayush Jain
Group Manager

On Apr 11, 10:16 am, vinod rao vinod.ma...@gmail.com wrote:
 Hi Vikas,
 How did you do this?.
 Regards
 Vin

 On Wed, Apr 7, 2010 at 7:00 PM, Vikas Chouhan vikask...@gmail.com wrote:
  Hi,

  Go format as table,

  On Wed, Apr 7, 2010 at 6:23 PM, Jai jaihumtu...@gmail.com wrote:

  Dear All Members.

  How can put the filter  2 times in One Excel file .

  --
  Thanks For Mail.

  --

  --
  Some important links for excel users:
  1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
  2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
  3. Excel tutorials athttp://www.excel-macros.blogspot.com
  4. Learn VBA Macros athttp://www.quickvba.blogspot.com
  5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

  To post to this group, send email to excel-macros@googlegroups.com

  
  HELP US GROW !!

  We reach over 6,800 subscribers worldwide and receive many nice notes
  about the learning and support from the group.Let friends and co-workers
  know they can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

  --
  One Team One Dream One Goal

  Warm Regards,
  Vikas Chauhan
  E-Mail :- vikask...@gmail.com,vikask...@rediffmail.com,
  9911868518,
  We can't Spell S_ccess without U

  Life is Very beautiful !!!
  ¨`•.•´¨) Always
  `•.¸(¨`•.•´¨) Keep
  (¨`•.•´¨)¸.•´ Smiling!
  `•.¸.•´.

  --

  --
  Some important links for excel users:
  1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
  2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
  3. Excel tutorials athttp://www.excel-macros.blogspot.com
  4. Learn VBA Macros athttp://www.quickvba.blogspot.com
  5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

  To post to this group, send email to excel-macros@googlegroups.com

  
  HELP US GROW !!

  We reach over 6,800 subscribers worldwide and receive many nice notes about
  the learning and support from the group.Let friends and co-workers know they
  can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

To unsubscribe, reply using remove me as the subject.


Re: $$Excel-Macros$$ FILTER

2010-04-11 Thread vinod rao
Hi Ayush,

I could put filter to one selected range and later when i want to put to
other range the 1filter disappeared. Note that i am using 2003.

Regards,

Vin


On Sun, Apr 11, 2010 at 11:37 AM, Ayush jainayus...@gmail.com wrote:

 Hi Vinod,

 It is very simple. Just select the 1st range and apply the filter and
 same for 2nd range.

 Please let me know if you have more questions.

 Best regards,
 Ayush Jain
 Group Manager

 On Apr 11, 10:16 am, vinod rao vinod.ma...@gmail.com wrote:
  Hi Vikas,
  How did you do this?.
  Regards
  Vin
 
  On Wed, Apr 7, 2010 at 7:00 PM, Vikas Chouhan vikask...@gmail.com
 wrote:
   Hi,
 
   Go format as table,
 
   On Wed, Apr 7, 2010 at 6:23 PM, Jai jaihumtu...@gmail.com wrote:
 
   Dear All Members.
 
   How can put the filter  2 times in One Excel file .
 
   --
   Thanks For Mail.
 
   --
 
  
 --
   Some important links for excel users:
   1. Follow us on TWITTER for tips tricks and links :
  http://twitter.com/exceldailytip
   2. Join our Facebook Group @
  http://www.facebook.com/group.php?gid=287779555678
   3. Excel tutorials athttp://www.excel-macros.blogspot.com
   4. Learn VBA Macros athttp://www.quickvba.blogspot.com
   5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
 
   To post to this group, send email to excel-macros@googlegroups.com
 
   
   HELP US GROW !!
 
   We reach over 6,800 subscribers worldwide and receive many nice notes
   about the learning and support from the group.Let friends and
 co-workers
   know they can subscribe to group at
  http://groups.google.com/group/excel-macros/subscribe
 
   --
   One Team One Dream One Goal
 
   Warm Regards,
   Vikas Chauhan
   E-Mail :- vikask...@gmail.com,vikask...@rediffmail.com,
   9911868518,
   We can't Spell S_ccess without U
 
   Life is Very beautiful !!!
   ¨`•.•´¨) Always
   `•.¸(¨`•.•´¨) Keep
   (¨`•.•´¨)¸.•´ Smiling!
   `•.¸.•´.
 
   --
 
  
 --
   Some important links for excel users:
   1. Follow us on TWITTER for tips tricks and links :
  http://twitter.com/exceldailytip
   2. Join our Facebook Group @
  http://www.facebook.com/group.php?gid=287779555678
   3. Excel tutorials athttp://www.excel-macros.blogspot.com
   4. Learn VBA Macros athttp://www.quickvba.blogspot.com
   5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
 
   To post to this group, send email to excel-macros@googlegroups.com
 
   
   HELP US GROW !!
 
   We reach over 6,800 subscribers worldwide and receive many nice notes
 about
   the learning and support from the group.Let friends and co-workers know
 they
   can subscribe to group at
  http://groups.google.com/group/excel-macros/subscribe

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 HELP US GROW !!

 We reach over 6,800 subscribers worldwide and receive many nice notes about
 the learning and support from the group.Let friends and co-workers know they
 can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

 To unsubscribe, reply using remove me as the subject.


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe


Re: $$Excel-Macros$$ FILTER

2010-04-11 Thread Ayush
Hi Vinod,

There is no workaround to filter twice in one spreadsheet in Excel
2003.

Also,In Excel 2007, you will have to use Format as table style to
apply filter to selected range.

To use Format as Table, Just select the range and apply any table
format from the dropdown and it will automatically apply filter to
those selected ranges.

I hope it helps. Please let me know if you have further doubts.

Best regards,
Ayush Jain
Group Manager

On Apr 11, 11:35 am, vinod rao vinod.ma...@gmail.com wrote:
 Hi Ayush,

 I could put filter to one selected range and later when i want to put to
 other range the 1filter disappeared. Note that i am using 2003.

 Regards,

 Vin

 On Sun, Apr 11, 2010 at 11:37 AM, Ayush jainayus...@gmail.com wrote:
  Hi Vinod,

  It is very simple. Just select the 1st range and apply the filter and
  same for 2nd range.

  Please let me know if you have more questions.

  Best regards,
  Ayush Jain
  Group Manager

  On Apr 11, 10:16 am, vinod rao vinod.ma...@gmail.com wrote:
   Hi Vikas,
   How did you do this?.
   Regards
   Vin

   On Wed, Apr 7, 2010 at 7:00 PM, Vikas Chouhan vikask...@gmail.com
  wrote:
Hi,

Go format as table,

On Wed, Apr 7, 2010 at 6:23 PM, Jai jaihumtu...@gmail.com wrote:

Dear All Members.

How can put the filter  2 times in One Excel file .

--
Thanks For Mail.

--

  --
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
   http://twitter.com/exceldailytip
2. Join our Facebook Group @
   http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials athttp://www.excel-macros.blogspot.com
4. Learn VBA Macros athttp://www.quickvba.blogspot.com
5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes
about the learning and support from the group.Let friends and
  co-workers
know they can subscribe to group at
   http://groups.google.com/group/excel-macros/subscribe

--
One Team One Dream One Goal

Warm Regards,
Vikas Chauhan
E-Mail :- vikask...@gmail.com,vikask...@rediffmail.com,
9911868518,
We can't Spell S_ccess without U

Life is Very beautiful !!!
¨`•.•´¨) Always
`•.¸(¨`•.•´¨) Keep
(¨`•.•´¨)¸.•´ Smiling!
`•.¸.•´.

--

  --
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
   http://twitter.com/exceldailytip
2. Join our Facebook Group @
   http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials athttp://www.excel-macros.blogspot.com
4. Learn VBA Macros athttp://www.quickvba.blogspot.com
5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes
  about
the learning and support from the group.Let friends and co-workers know
  they
can subscribe to group at
   http://groups.google.com/group/excel-macros/subscribe

  --

  --
  Some important links for excel users:
  1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
  2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
  3. Excel tutorials athttp://www.excel-macros.blogspot.com
  4. Learn VBA Macros athttp://www.quickvba.blogspot.com
  5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

  To post to this group, send email to excel-macros@googlegroups.com

  
  HELP US GROW !!

  We reach over 6,800 subscribers worldwide and receive many nice notes about
  the learning and support from the group.Let friends and co-workers know they
  can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

  To unsubscribe, reply using remove me as the subject.

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at 

Re: $$Excel-Macros$$ FILTER

2010-04-11 Thread Ayush
Thank you Dave fro your inputs.

This is good workaround and weird too. But difficult for those who
have only XL 2003. isn't it ?

Best regards,
Ayush Jain
Group Manager

On Apr 11, 12:41 pm, Dave Bonallack davebonall...@hotmail.com wrote:
 Hi Ayush,
 There is a sort of a workaround.
 If you have xl2007, but others using the sheet only have xl2003:
 Create the worksheet in XL2007, insert the 2 filters using the 'Format as 
 Table' thingy, then save it as a .xlsx file.
 Now open the file in XL2003, (with the microsoft file conversion update 
 installed). Both filters will work as they do in xl2007.
 Weird.
 Regards - Dave.



  Date: Sat, 10 Apr 2010 23:52:13 -0700
  Subject: Re: $$Excel-Macros$$ FILTER
  From: jainayus...@gmail.com
  To: excel-macros@googlegroups.com

  Hi Vinod,

  There is no workaround to filter twice in one spreadsheet in Excel
  2003.

  Also,In Excel 2007, you will have to use Format as table style to
  apply filter to selected range.

  To use Format as Table, Just select the range and apply any table
  format from the dropdown and it will automatically apply filter to
  those selected ranges.

  I hope it helps. Please let me know if you have further doubts.

  Best regards,
  Ayush Jain
  Group Manager

  On Apr 11, 11:35 am, vinod rao vinod.ma...@gmail.com wrote:
   Hi Ayush,

   I could put filter to one selected range and later when i want to put to
   other range the 1filter disappeared. Note that i am using 2003.

   Regards,

   Vin

   On Sun, Apr 11, 2010 at 11:37 AM, Ayush jainayus...@gmail.com wrote:
Hi Vinod,

It is very simple. Just select the 1st range and apply the filter and
same for 2nd range.

Please let me know if you have more questions.

Best regards,
Ayush Jain
Group Manager

On Apr 11, 10:16 am, vinod rao vinod.ma...@gmail.com wrote:
 Hi Vikas,
 How did you do this?.
 Regards
 Vin

 On Wed, Apr 7, 2010 at 7:00 PM, Vikas Chouhan vikask...@gmail.com
wrote:
  Hi,

  Go format as table,

  On Wed, Apr 7, 2010 at 6:23 PM, Jai jaihumtu...@gmail.com wrote:

  Dear All Members.

  How can put the filter  2 times in One Excel file .

  --
  Thanks For Mail.

  --

--
  Some important links for excel users:
  1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
  2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
  3. Excel tutorials athttp://www.excel-macros.blogspot.com
  4. Learn VBA Macros athttp://www.quickvba.blogspot.com
  5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

  To post to this group, send email to excel-macros@googlegroups.com

  
  HELP US GROW !!

  We reach over 6,800 subscribers worldwide and receive many nice 
  notes
  about the learning and support from the group.Let friends and
co-workers
  know they can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

  --
  One Team One Dream One Goal

  Warm Regards,
  Vikas Chauhan
  E-Mail :- vikask...@gmail.com,vikask...@rediffmail.com,
  9911868518,
  We can't Spell S_ccess without U

  Life is Very beautiful !!!
  ¨`•.•´¨) Always
  `•.¸(¨`•.•´¨) Keep
  (¨`•.•´¨)¸.•´ Smiling!
  `•.¸.•´.

  --

--
  Some important links for excel users:
  1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
  2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
  3. Excel tutorials athttp://www.excel-macros.blogspot.com
  4. Learn VBA Macros athttp://www.quickvba.blogspot.com
  5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

  To post to this group, send email to excel-macros@googlegroups.com

  
  HELP US GROW !!

  We reach over 6,800 subscribers worldwide and receive many nice 
  notes
about
  the learning and support from the group.Let friends and co-workers 
  know
they
  can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

--

--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
   http://twitter.com/exceldailytip
2. Join our Facebook Group @
   http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials athttp://www.excel-macros.blogspot.com
4. Learn VBA Macros athttp://www.quickvba.blogspot.com
5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide

RE: $$Excel-Macros$$ FILTER

2010-04-11 Thread Dave Bonallack

Agreed.   
_
View photos of singles in your area! Looking for a hot date?
http://clk.atdmt.com/NMN/go/150855801/direct/01/

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

To unsubscribe, reply using remove me as the subject.


Re: $$Excel-Macros$$ FILTER

2010-04-10 Thread vinod rao
Hi Vikas,
How did you do this?.
Regards
Vin

On Wed, Apr 7, 2010 at 7:00 PM, Vikas Chouhan vikask...@gmail.com wrote:

 Hi,

 Go format as table,

 On Wed, Apr 7, 2010 at 6:23 PM, Jai jaihumtu...@gmail.com wrote:

 Dear All Members.

 How can put the filter  2 times in One Excel file .

 --
 Thanks For Mail.

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 HELP US GROW !!

 We reach over 6,800 subscribers worldwide and receive many nice notes
 about the learning and support from the group.Let friends and co-workers
 know they can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe




 --
 One Team One Dream One Goal

 Warm Regards,
 Vikas Chauhan
 E-Mail :- vikask...@gmail.com,vikask...@rediffmail.com,
 9911868518,
 We can't Spell S_ccess without U

 Life is Very beautiful !!!
 ¨`•.•´¨) Always
 `•.¸(¨`•.•´¨) Keep
 (¨`•.•´¨)¸.•´ Smiling!
 `•.¸.•´.

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 HELP US GROW !!

 We reach over 6,800 subscribers worldwide and receive many nice notes about
 the learning and support from the group.Let friends and co-workers know they
 can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe


-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

To unsubscribe, reply using remove me as the subject.


$$Excel-Macros$$ FILTER

2010-04-07 Thread Jai
Dear All Members.

How can put the filter  2 times in One Excel file .

-- 
Thanks For Mail.

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

To unsubscribe, reply using remove me as the subject.


FILTER.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ FILTER

2010-04-07 Thread Vikas Chouhan
Hi,

Go format as table,

On Wed, Apr 7, 2010 at 6:23 PM, Jai jaihumtu...@gmail.com wrote:

 Dear All Members.

 How can put the filter  2 times in One Excel file .

 --
 Thanks For Mail.

 --

 --
 Some important links for excel users:
 1. Follow us on TWITTER for tips tricks and links :
 http://twitter.com/exceldailytip
 2. Join our Facebook Group @
 http://www.facebook.com/group.php?gid=287779555678
 3. Excel tutorials at http://www.excel-macros.blogspot.com
 4. Learn VBA Macros at http://www.quickvba.blogspot.com
 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com

 To post to this group, send email to excel-macros@googlegroups.com

 
 HELP US GROW !!

 We reach over 6,800 subscribers worldwide and receive many nice notes about
 the learning and support from the group.Let friends and co-workers know they
 can subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe




-- 
One Team One Dream One Goal

Warm Regards,
Vikas Chauhan
E-Mail :- vikask...@gmail.com,vikask...@rediffmail.com,
9911868518,
We can't Spell S_ccess without U

Life is Very beautiful !!!
¨`•.•´¨) Always
`•.¸(¨`•.•´¨) Keep
(¨`•.•´¨)¸.•´ Smiling!
`•.¸.•´.

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

To unsubscribe, reply using remove me as the subject.


Copy of FILTER.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


$$Excel-Macros$$ filter print to PDF (or similar)

2010-03-29 Thread holt
I hope that this request is posted in the correct group and someone
can assist.

A simple spreadsheet with 2 worksheets. The first is a predetermined
list of 100 members names whilst the second contains a number of
columns containing various pieces of information relating to the
members. For simplicity, the headings are 'member'  'information'.
The 'members' column selects from drop down list, validated by the
list on the first worksheet. New information is added onto the last
row and I have an active filter so at any given time i can filter
based on the member to show what information relates to them (possibly
running to many items)

What I would like to do is include a print facility that, with the
click of button / macro run, would run through the members list (sheet
1) then filter (based on sheet 2)  print individual members
information to a PDF (or similar) with the file title being that of
the member. I'd end up with 100 members documents.

This is the simple version as, in reality, the 2nd sheet runs to many
columns and i realise that i may end up with a number of files
containing nothing if there is no members information present.

I can visualise what i want to do but I'm totally new to VBA Macros
and may have offered a solution to a work colleague that i don't
really know how to achieve.

Thanks

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

To unsubscribe from this group, send email to 
excel-macros+unsubscribegooglegroups.com or reply to this email with the words 
REMOVE ME as the subject.


Re: $$Excel-Macros$$ FILTER IN EXCEL

2009-11-23 Thread Aindril De
Dear Sunil,

You can use the following UDF:

This Custom Function can be used to highlight them. Enter the following code
in a standard module. (Alt + F11, then Insert, Module from the top menu)

Function FilterOn(myCell As Range) As Boolean
On Error Resume Next
With myCell.Parent.AutoFilter
With .Filters(myCell.Column - .Range.Column + 1)
If .On Then FilterOn = True
End With
End With
End Function
Then using Conditional Formatting, enter =filteron(*your cell reference*).
(Format, Conditional Formatting, Formula Is).
The above solution and more details can also be found on the following
website:
http://blog.livedoor.jp/andrewe/archives/19415538.html

Please let us know if you need further help.

Regards,
Andy

On Sat, Nov 21, 2009 at 3:57 PM, SSG sunilsga...@gmail.com wrote:

 Sir,

 Many times, it happens that we apply a filter on one or more columns.
 During the course of our handling and scrolling left-to-right or
 otherwise, we often forget which columns have been filtered.

 Is there a good and efficient and clear way of telling or highlighting
 FILTER columns, e.g., if an excel sheet is filtered on columns A, D,
 F, M then these columns headings should get highlighted. The default
 style of showing a small downward arrow and an anchor is not at all an
 impressive one. One has to carefully look at all columns to know where
 is the filter.

 Can conditional formating or some formula is there to achieve this?

 regards

 Sunil - India - 9320923879

 --

 --
 Some important links for excel users:
 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
 http://www.excelitems.com
 2. Excel tutorials at http://www.excel-macros.blogspot.com
 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com


 To post to this group, send email to excel-macros@googlegroups.com
 If you find any spam message in the group, please send an email to:
 Ayush Jain  @ jainayus...@gmail.com or
 Ashish Jain @ 26may.1...@gmail.com
 
 HELP US GROW !!

 We reach over 6,500 subscribers worldwide and receive many nice notes about
 the learning and support from the group. Our goal is to have 10,000
 subscribers by the end of 2009. Let friends and co-workers know they can
 subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com

HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Re: $$Excel-Macros$$ FILTER IN EXCEL

2009-11-23 Thread Abhishek Jain
Hi Sunil,

Attached file might help. I found it on net.

Cheers to the original programmer.

Best regards,

AJ

On Sat, Nov 21, 2009 at 2:27 PM, SSG sunilsga...@gmail.com wrote:

 Sir,

 Many times, it happens that we apply a filter on one or more columns.
 During the course of our handling and scrolling left-to-right or
 otherwise, we often forget which columns have been filtered.

 Is there a good and efficient and clear way of telling or highlighting
 FILTER columns, e.g., if an excel sheet is filtered on columns A, D,
 F, M then these columns headings should get highlighted. The default
 style of showing a small downward arrow and an anchor is not at all an
 impressive one. One has to carefully look at all columns to know where
 is the filter.

 Can conditional formating or some formula is there to achieve this?

 regards

 Sunil - India - 9320923879

 --

 --
 Some important links for excel users:
 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
 http://www.excelitems.com
 2. Excel tutorials at http://www.excel-macros.blogspot.com
 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com


 To post to this group, send email to excel-macros@googlegroups.com
 If you find any spam message in the group, please send an email to:
 Ayush Jain  @ jainayus...@gmail.com or
 Ashish Jain @ 26may.1...@gmail.com
 
 HELP US GROW !!

 We reach over 6,500 subscribers worldwide and receive many nice notes about
 the learning and support from the group. Our goal is to have 10,000
 subscribers by the end of 2009. Let friends and co-workers know they can
 subscribe to group at
 http://groups.google.com/group/excel-macros/subscribe

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com

HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

FilterColour.xls
Description: MS-Excel spreadsheet


$$Excel-Macros$$ FILTER IN EXCEL

2009-11-22 Thread SSG
Sir,

Many times, it happens that we apply a filter on one or more columns.
During the course of our handling and scrolling left-to-right or
otherwise, we often forget which columns have been filtered.

Is there a good and efficient and clear way of telling or highlighting
FILTER columns, e.g., if an excel sheet is filtered on columns A, D,
F, M then these columns headings should get highlighted. The default
style of showing a small downward arrow and an anchor is not at all an
impressive one. One has to carefully look at all columns to know where
is the filter.

Can conditional formating or some formula is there to achieve this?

regards

Sunil - India - 9320923879

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com

HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe


$$Excel-Macros$$ Filter by variable date range

2009-11-14 Thread Mahesh Fernando
Hi

I need to create a macro when i put the start date and end date on a
particular Cell for the macro to filter the data only to be between
those two dates.

The concern is the fact that The coding i did do not pick the variable
dates

Sub DateFilter()
'
' Filter Macro
'

'
Dim StartDate As Date
Dim EndDate As Date

StartDate = Worksheets(Cover Page).Range(A4)
  EndDate = Worksheets(Cover Page).Range(A5)

ActiveSheet.Next.Select
ActiveSheet.Range($A$11:$M$3171).AutoFilter Field:=13,
Criteria1:= _
StartDate, Operator:=xlAnd, Criteria2:=EndDate

'The following section was taken for my
reference
'ActiveSheet.Range($A$11:$M$3171).AutoFilter Field:=13,
Criteria1:= _
9-Jul-2009, Operator:=xlAnd, Criteria2:==13-Jul-2009
'***
Worksheets(Cover Page).Select
Range(A2).Select

End Sub


Can anyone please assist me on how to make this macro pick the two
criteria from the two cells and filter the rage.

Thanking you in advance.

Mahesh

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com

HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe


Re: $$Excel-Macros$$ Filter by variable date range

2009-11-14 Thread Ayush Jain
Dear Mahesh,

Please use below codeIt should work now..You should also use
operators with your code. Let me know if further help is required.

Sub DateFilter()
'
' Filter Macro
'

'
Dim StartDate As Date
Dim EndDate As Date

StartDate = Worksheets(Cover Page).Range(A4)
  EndDate = Worksheets(Cover Page).Range(A5)

ActiveSheet.Next.Select

ActiveSheet.Range($A$11:$M$221).AutoFilter Field:=13, Criteria1:=  
StartDate, Operator:=xlAnd, Criteria2:=  EndDate

'The following section was taken for my
reference
'    ActiveSheet.Range($A$11:$M$3171).AutoFilter Field:=13,
Criteria1:= _
        9-Jul-2009, Operator:=xlAnd, Criteria2:==13-Jul-2009
'***
Worksheets(Cover Page).Select
Range(A2).Select

End Sub

Best regards,
Ayush Jain


--- On Sat, 14/11/09, Mahesh Fernando maxfort...@gmail.com wrote:

From: Mahesh Fernando maxfort...@gmail.com
Subject: $$Excel-Macros$$ Filter by variable date range
To: MS EXCEL AND VBA MACROS excel-macros@googlegroups.com
Date: Saturday, 14 November, 2009, 9:29 PM

Hi

I need to create a macro when i put the start date and end date on a
particular Cell for the macro to filter the data only to be between
those two dates.

The concern is the fact that The coding i did do not pick the variable
dates

Sub DateFilter()
'
' Filter Macro
'

'
Dim StartDate As Date
Dim EndDate As Date

StartDate = Worksheets(Cover Page).Range(A4)
  EndDate = Worksheets(Cover Page).Range(A5)

ActiveSheet.Next.Select
    ActiveSheet.Range($A$11:$M$3171).AutoFilter Field:=13,
Criteria1:= _
        StartDate, Operator:=xlAnd, Criteria2:=EndDate

'The following section was taken for my
reference
'    ActiveSheet.Range($A$11:$M$3171).AutoFilter Field:=13,
Criteria1:= _
        9-Jul-2009, Operator:=xlAnd, Criteria2:==13-Jul-2009
'***
Worksheets(Cover Page).Select
Range(A2).Select

End Sub


Can anyone please assist me on how to make this macro pick the two
criteria from the two cells and filter the rage.

Thanking you in advance.

Mahesh

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com

HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe



  Now, send attachments up to 25MB with Yahoo! India Mail. Learn how. 
http://in.overview.mail.yahoo.com/photos

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com

HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

$$Excel-Macros$$ Filter Pivots

2009-04-22 Thread Prashanth Banneni
Hi All,

I have an issue with the pivot tables filter, as i need to change the filter
in as many as 10 sheets(20 pivot tables) to get the correct values.

Is there any way where i filter it in one page and the remaining pivots
change accordingly.

Appriciate an early solution from you.

Thanks in advance.

Prashanth
Analyst

--~--~-~--~~~---~--~~
-
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
-
-~--~~~~--~~--~--~---



$$Excel-Macros$$ FILTER COMMAND

2008-12-02 Thread Mattathil M. Pradeep
Dears..

 

Can we use 2 filter in single sheet.  Attached excel sheet for your
reference.  

 

 

Thanks and Regards

 

   Pradeep

 

 


--~--~-~--~~~---~--~~
Visit the blog to download Excel tutorials at 
http://www.excel-macros.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/excel-macros?hl=en

Visit  Join Our Orkut Community at 
http://www.orkut.com/Community.aspx?cmm=22913620

Visit the blog to download Excel tutorials at 
http://www.excel-macros.blogspot.com

To Learn VBA Macros Please visit http://www.vbamacros.blogspot.com

To see the Daily Excel Tips, Go to:
http://exceldailytip.blogspot.com
-~--~~~~--~~--~--~---



filtering command.xls
Description: filtering command.xls