Re: Fw: $$Excel-Macros$$ Merge multiple Workbook

2016-01-26 Thread Devendra Sahay
Hi Sandeep,


I have a code, which simply goes to specific folder & open the workbooks
one by one & copy the data and paste them in same sheet (Where the marcro
is written).

** Make sure all the files have same header, because it copies all the data
including the header.

So if this is relevant, I can share the code.

Thanks.
Devendra

On Tue, Jan 26, 2016 at 8:52 PM, Sandeep Chhajer 
wrote:

> Hi,
>
>
> Any way to solve this problem.
>
> Sent from my BlackBerry 10 smartphone.
> *From: *Sandeep Chhajer 
> *Sent: *Sunday 24 January 2016 18:07
> *To: *Excel Macros
> *Reply To: *excel-macros@googlegroups.com
> *Subject: *$$Excel-Macros$$ Merge multiple Workbook
>
> Hi Excel guru,
>
> I have found macros for merging multiple workbook (kept in a single
> folder) into a single worksheet.
>
> But my requirement is a step ahead...can that macro to be changed to copy
> only specified column from every wrokbook (Sheet1). Like it will search in
> all the workbooks (sheet1 row no 1 to 6 ) kept in a folder; and wherever it
> will find "Name" , "Emp code"  or " Net payment" then copy the range into
> new sheet one after one.
>
> the code I am using (got from website) for merging the workbooks are
> pasted below. (Any thing new to solve the above problem is also welcome)
>
>
> Sub simpleXlsMerger()
> Dim bookList As Workbook
> Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As
> Object
> Application.ScreenUpdating = False
> Set mergeObj = CreateObject("Scripting.FileSystemObject")
>
> 'change folder path of excel files here
> Set dirObj = mergeObj.Getfolder("C:\Working\MT\MT 2015 16\MT Q3\Actuas All
>  ")
> Set filesObj = dirObj.Files
> For Each everyObj In filesObj
> Set bookList = Workbooks.Open(everyObj)
>
> 'change "A2" with cell reference of start point for every files here
> 'for example "B3:IV" to merge all files start from columns B and rows 3
> 'If you're files using more than IV column, change it to the latest column
> 'Also change "A" column on "A65536" to the same column as start point
> Range("A2:IV" & Range("A65536").End(xlUp).Row).Copy
> ThisWorkbook.Worksheets(1).Activate
>
> 'Do not change the following column. It's not the same column as above
> Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial
> Application.CutCopyMode = False
> bookList.Close
> Next
> End Sub
>
> Thanking you in advance.
> --
> Regards,
> CA Sandeep Kumar Chhajer
>
> --
> 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 https://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 https://groups.google.com/group/excel-macros.
> For more options, visit 

Fw: $$Excel-Macros$$ Merge multiple Workbook

2016-01-26 Thread Sandeep Chhajer
  Hi,Any way to solve this problem.Sent from my BlackBerry 10 smartphone.From: Sandeep Chhajer Sent: Sunday 24 January 2016 18:07To: Excel MacrosReply To: excel-macros@googlegroups.comSubject: $$Excel-Macros$$ Merge multiple WorkbookHi Excel guru,I have found macros for merging multiple workbook (kept in a single folder) into a single worksheet.But my requirement is a step ahead...can that macro to be changed to copy only specified column from every wrokbook (Sheet1). Like it will search in all the workbooks (sheet1 row no 1 to 6 ) kept in a folder; and wherever it will find "Name" , "Emp code"  or " Net payment" then copy the range into new sheet one after one.the code I am using (got from website) for merging the workbooks are pasted below. (Any thing new to solve the above problem is also welcome)Sub simpleXlsMerger()Dim bookList As WorkbookDim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As ObjectApplication.ScreenUpdating = FalseSet mergeObj = CreateObject("Scripting.FileSystemObject") 'change folder path of excel files hereSet dirObj = mergeObj.Getfolder("C:\Working\MT\MT 2015 16\MT Q3\Actuas All  ")Set filesObj = dirObj.FilesFor Each everyObj In filesObjSet bookList = Workbooks.Open(everyObj) 'change "A2" with cell reference of start point for every files here'for example "B3:IV" to merge all files start from columns B and rows 3'If you're files using more than IV column, change it to the latest column'Also change "A" column on "A65536" to the same column as start pointRange("A2:IV" & Range("A65536").End(xlUp).Row).CopyThisWorkbook.Worksheets(1).Activate 'Do not change the following column. It's not the same column as aboveRange("A65536").End(xlUp).Offset(1, 0).PasteSpecialApplication.CutCopyMode = FalsebookList.CloseNextEnd Sub      Thanking you in advance.-- Regards,CA Sandeep Kumar Chhajer




-- 
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 https://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 https://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


FW: $$Excel-Macros$$ Re: FW: Automatically Generating Report - URGENT

2015-07-10 Thread KANNAN V


-Original Message-
From: KANNAN V kannan.ex...@gmail.com
Sent: ‎11-‎07-‎2015 09:26 AM
To: KANNAN V kannan.ex...@gmail.com; vt_kan...@camsonline.com 
vt_kan...@camsonline.com
Subject: RE: $$Excel-Macros$$ Re: FW: Automatically Generating Report - URGENT

Hi Bro, 

Really thanks for your effect, but its not working. Pls check below mentioned 
result.

Now its working, But I am not asking this type. I will explain you now clearly, 

Example:  
1. When CODE column have k01v means, we need only one row. (TOTAL ONE ROW) 
2. Then SLAB column have 1 and 2 means, we need two rows. 1 for first 
row  2 for second row. And scheme code also in two rows. (TOTAL TWO ROWS) 
3. Then LOCATION column have T and B means, we need four rows. Because SLAB 
column already have two rows. So now we want to put 1 and 2 for T (two 
rows) and another 1 and 2 for B (two rows). (TOTAL FOUR ROWS) 
4. Then Type column have Normal and SIP means, we need eight rows. Four rows 
for NORMAL and another four rows for SIP. (TOTAL EIGHT ROWS) 
5. Then  STEP column have Step-1 means, we need same eight column only, 
Because there is only one STEP-1. 



Requirement:-

S NO CODE SLAB LOCATION TYPE STEP 
1 k01v 1  2 T  B Normal  Sip STEP - 1 



Result want to come mentioned below:- 

S NO CODE SLAB LOCATION TYPE STEP 
1 k01v 1 T NORMAL STEP - 1 
2 k01v 2 T NORMAL STEP - 1 
3 k01v 1 B NORMAL STEP - 1 
4 k01v 2 B NORMAL STEP - 1 
1 k01v 1 T SIP STEP - 1 
2 k01v 2 T SIP STEP - 1 
3 k01v 1 B SIP STEP - 1 
4 k01v 2 B SIP STEP - 1 



From: KANNAN V
Sent: ‎11-‎07-‎2015 08:23 AM
To: vt_kan...@camsonline.com
Subject: FW: $$Excel-Macros$$ Re: FW: Automatically Generating Report - URGENT




From: Mandeep Baluja
Sent: ‎10-‎07-‎2015 05:39 PM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Re: FW: Automatically Generating Report - URGENT


Code Changed !! Try this Check this Out.


Regards, 
Mandeep Baluja 
Email :-mandeep.bal...@snapdeal.com
mandeep.bal...@gmail.com
https://in.linkedin.com/pub/mandeep-baluja/88/7bb/b77
https://www.facebook.com/groups/825221420889809/


 
Sub Createdata()


Lc = Sheets(Sheet3).Cells(Rows.Count, 1).End(xlUp).Row
Sheets(Sheet2).Cells.ClearContents


a = 1
b = 5
lk = Sheets(sheet2).Cells(Rows.Count, 1).End(xlUp).Row
For a1 = 2 To Lc


v = Split(Sheets(Sheet3).Cells(a1, 3), ,)
w = Split(Sheets(Sheet3).Cells(a1, 4), ,)
x = Split(Sheets(Sheet3).Cells(a1, 5), ,)


Sheets(sheet2).Select


For i3 = LBound(x) To UBound(x)
For i2 = LBound(w) To UBound(w)
For i1 = LBound(v) To UBound(v)




Debug.Print lk
If lk = 1 Then
Sheets(Sheet2).Range(Cells(1, 1), Cells(a, 1)).Value = 
Sheets(Sheet3).Cells(a1, 2).Value
Sheets(Sheet2).Range(Cells(1, 2), Cells(a, 2)).Value = SLAB -   v(i1)
Sheets(Sheet2).Range(Cells(1, 3), Cells(a, 3)).Value = LOCATION -   w(i2)
Sheets(Sheet2).Range(Cells(1, 4), Cells(a, 4)).Value = x(i3)
Sheets(Sheet2).Range(Cells(1, 5), Cells(a, 5)).Value = 
Sheets(Sheet3).Cells(a1, 2).Offset(0, 4).Value
a = a + 1
Else


Sheets(Sheet2).Range(Cells(lk, 1), Cells(a, 1)).Value = 
Sheets(Sheet3).Cells(a1, 2).Value
Sheets(Sheet2).Range(Cells(lk, 2), Cells(a, 2)).Value = SLAB -  v(i1)
Sheets(Sheet2).Range(Cells(lk, 3), Cells(a, 3)).Value = LOCATION -  w(i2)
Sheets(Sheet2).Range(Cells(lk, 4), Cells(a, 4)).Value = x(i3)
Sheets(Sheet2).Range(Cells(lk, 5), Cells(a, 5)).Value = 
Sheets(Sheet3).Cells(a1, 2).Offset(0, 4).Value
a = a + 1
End If
lk = Sheets(sheet2).Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
Next
Next
Next


Next


End Sub


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

[The entire original message is not included.]

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

FW: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart

2014-09-24 Thread Amit Desai (MERU)
Dear Ashish,

Thanks a lot for your help...this one is very closed to what we needed...

Need to make some alteration;

1)  We will need if Say bar for A is of 10 mm large, bar for B should be 
say 6 mm ( inside the A bar)  bar for C should be say 3-4 mm ( inside the B 
bar).

2)  What I move the data for A on secondary axix..currently it moves all 
the data on second axix or nothing..

Please explain me how did you prepared the layered bar...

I also took help from the below link.. but not able to put more than 1 column 
data in chart...
http://www.exceldashboardtemplates.com/how-to-make-a-better-excel-sales-pipeline-or-sales-funnel-chart/

Regards,
Amit Desai

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Ashish Kumar
Sent: Wednesday, September 24, 2014 7:08 PM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart

Hi,

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.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.
For more options, visit https://groups.google.com/d/optout.
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.
For more options, visit https://groups.google.com/d/optout.


fOR amit.xlsx
Description: MS-Excel 2007 spreadsheet


Re: FW: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart

2014-09-24 Thread Ashish Kumar
Hi,

Check this!!

Final shot from my side.

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.


fOR amit.xlsx
Description: MS-Excel 2007 spreadsheet


RE: FW: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart

2014-09-24 Thread Amit Desai (MERU)
Dear Ashish,

Thanks a lot for your help...however request you to please explain me how you 
did this?

Regards,
Amit Desai
From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Ashish Kumar
Sent: Wednesday, September 24, 2014 8:11 PM
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart

Hi,

Check this!!

Final shot from my side.

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.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.
For more options, visit https://groups.google.com/d/optout.
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.
For more options, visit https://groups.google.com/d/optout.


Re: FW: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart

2014-09-24 Thread Ashish Kumar
call me

On 24 September 2014 21:35, Amit Desai (MERU) amit.de...@merucabs.com
wrote:

  Dear Ashish,



 Thanks a lot for your help...however request you to please explain me how
 you did this?



 Regards,

 *Amit Desai*

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Ashish Kumar
 *Sent:* Wednesday, September 24, 2014 8:11 PM
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ Help needed for 2 Layered Bar Chart



 Hi,



 Check this!!



 Final shot from my side.



 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.

  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.
 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

FW: $$Excel-Macros$$ Count help

2014-03-19 Thread Raviinder Nei
pfa

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of AK
Sent: Wednesday, March 19, 2014 8:15 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Count help

 

Hi All,

 

I need to count the non-blank cell from the latest month (Cell M1 -- Feb
2014) to last blank cell and ignoring rest of the previous values.

countblank or CountA formula is not working as they are counting all the
cells in the range.

 

For example 1: If I need to update cell N2 the value should be 2, as there
are 2 non-blank cells from the Feb 2014 (Feb 14 and Jan 14) and ignoring
rest of the prior values in the range (B2 : M2)

 

For example 2. If I need to update cell N3 the value should be 5, as there
are 5 non-blank cells from the Feb 2014 (Feb 14 to Oct 13) and ignoring rest
of the prior values in the range (b3 : M3)

 

Please let me know the solution.


-- 
Regards,

AK

-- 
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.


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


Re: FW: $$Excel-Macros$$ Count help

2014-03-19 Thread AK
Thanks alot Raviinder!


On Wed, Mar 19, 2014 at 9:00 PM, Raviinder Nei
ravindervbacli...@gmail.comwrote:

  pfa



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *AK
 *Sent:* Wednesday, March 19, 2014 8:15 AM
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Count help



 Hi All,



 I need to count the non-blank cell from the latest month (Cell M1 -- Feb
 2014) to last blank cell and ignoring rest of the previous values.

 countblank or CountA formula is not working as they are counting all the
 cells in the range.



 For example 1: If I need to update cell N2 the value should be 2, as there
 are 2 non-blank cells from the Feb 2014 (Feb 14 and Jan 14) and ignoring
 rest of the prior values in the range (B2 : M2)



 For example 2. If I need to update cell N3 the value should be 5, as there
 are 5 non-blank cells from the Feb 2014 (Feb 14 to Oct 13) and ignoring
 rest of the prior values in the range (b3 : M3)



 Please let me know the solution.


 --
 Regards,

 AK

 --
 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.




-- 
Regards,

AK

-- 
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: FW: $$Excel-Macros$$ Count help

2014-03-19 Thread Ravi Kumar
There is some update as last output is not correct



On Thu, Mar 20, 2014 at 8:38 AM, AK exce...@gmail.com wrote:

 Thanks alot Raviinder!


 On Wed, Mar 19, 2014 at 9:00 PM, Raviinder Nei 
 ravindervbacli...@gmail.com wrote:

  pfa



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *AK
 *Sent:* Wednesday, March 19, 2014 8:15 AM
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Count help



 Hi All,



 I need to count the non-blank cell from the latest month (Cell M1 -- Feb
 2014) to last blank cell and ignoring rest of the previous values.

 countblank or CountA formula is not working as they are counting all the
 cells in the range.



 For example 1: If I need to update cell N2 the value should be 2, as
 there are 2 non-blank cells from the Feb 2014 (Feb 14 and Jan 14) and
 ignoring rest of the prior values in the range (B2 : M2)



 For example 2. If I need to update cell N3 the value should be 5, as
 there are 5 non-blank cells from the Feb 2014 (Feb 14 to Oct 13) and
 ignoring rest of the prior values in the range (b3 : M3)



 Please let me know the solution.


 --
 Regards,

 AK

 --
 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.




 --
 Regards,

 AK

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

Re: FW: $$Excel-Macros$$ Conditional Formating

2014-03-14 Thread Prafull Jadhav
Dear Sir,

It is not working..

Please let me know how I can select the all cell in sheet where cell format
is %



Regards,
Prafull Jadhav
9920553518


On 14 March 2014 15:12, Ravinder ravindervbacli...@gmail.com wrote:

 Pfa. if not receive...



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Ravinder
 *Sent:* Friday, March 14, 2014 3:08 PM
 *To:* excel-macros@googlegroups.com
 *Cc:* 'excelvbacli...@googlegroups.com'; Soum
 *Subject:* FW: $$Excel-Macros$$ Conditional Formating



 Did you not receive this file..



 *From:* Ravinder 
 [mailto:ravinderexcelgr...@gmail.comravinderexcelgr...@gmail.com]

 *Sent:* Friday, March 14, 2014 2:31 PM
 *To:* 'excel-macros@googlegroups.com';
 *Cc:* Soum (quote.ex...@gmail.com)
 *Subject:* RE: $$Excel-Macros$$ Conditional Formating



 Pfa.. may be help you



 *From:* excel-macros@googlegroups.com [
 mailto:excel-macros@googlegroups.com excel-macros@googlegroups.com] *On
 Behalf Of *Prafull Jadhav
 *Sent:* Friday, March 14, 2014 1:25 PM
 *To:* excelvbacli...@googlegroups.com; excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Conditional Formating



 Dear All,

 Very Good Afternoon,

 I have a small query.



 I have many table in a sheet which contain formula.

 I want to apply conditional formatting based on Percentage (Colour Scales)



 I am not able to select the cell where cell value format is Percentage .



 Kindly help me and also explain  the simple way

 I have attached the sample for the same.



 Regards,
 Prafull Jadhav
 9920553518

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

RE: FW: $$Excel-Macros$$ Conditional Formating

2014-03-14 Thread Ravinder
You just select the whole range of tables and put condition formatting as
already applied on $A$1:$L$21, you can increase as per your requirement.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Prafull Jadhav
Sent: Friday, March 14, 2014 3:29 PM
To: excel-macros@googlegroups.com
Cc: Soum
Subject: Re: FW: $$Excel-Macros$$ Conditional Formating

 

Dear Sir,

 

It is not working..

 

Please let me know how I can select the all cell in sheet where cell format
is %

 

 




Regards,
Prafull Jadhav
9920553518

 

On 14 March 2014 15:12, Ravinder ravindervbacli...@gmail.com wrote:

Pfa. if not receive.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Ravinder
Sent: Friday, March 14, 2014 3:08 PM
To: excel-macros@googlegroups.com
Cc: 'excelvbacli...@googlegroups.com'; Soum
Subject: FW: $$Excel-Macros$$ Conditional Formating

 

Did you not receive this file..

 

From: Ravinder [mailto:ravinderexcelgr...@gmail.com] 
Sent: Friday, March 14, 2014 2:31 PM
To: 'excel-macros@googlegroups.com';   
Cc: Soum (quote.ex...@gmail.com)
Subject: RE: $$Excel-Macros$$ Conditional Formating

 

Pfa.. may be help you..

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Prafull Jadhav
Sent: Friday, March 14, 2014 1:25 PM
To: excelvbacli...@googlegroups.com; excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Conditional Formating

 

Dear All,

Very Good Afternoon,

I have a small query.

 

I have many table in a sheet which contain formula.

I want to apply conditional formatting based on Percentage (Colour Scales)

 

I am not able to select the cell where cell value format is Percentage .

 

Kindly help me and also explain  the simple way 

I have attached the sample for the same.

 

Regards,
Prafull Jadhav
9920553518

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

RE: FW: $$Excel-Macros$$ Conditional Formating

2014-03-14 Thread Ravinder
What you want to do with that selection...color them or else

 

Below is code to color % format cell

 

Sub Button1_Click()

Dim ws As Worksheet

Dim cell As Range

Set ws = ThisWorkbook.ActiveSheet

 

For Each cell In ws.UsedRange

If cell.NumberFormat = 0.00% Then

cell.Interior.Color = vbGreen

End If

 

 

Next

 

End Sub

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Prafull Jadhav
Sent: Friday, March 14, 2014 3:36 PM
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Conditional Formating

 

Dear Sir,

 

I want a VBA code ;which will select the all cell in sheet where cell format
is 0.00%

 




Regards,
Prafull Jadhav
9920553518

 

On 14 March 2014 15:31, Ravinder ravindervbacli...@gmail.com wrote:

You just select the whole range of tables and put condition formatting as
already applied on $A$1:$L$21, you can increase as per your requirement.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Prafull Jadhav
Sent: Friday, March 14, 2014 3:29 PM
To: excel-macros@googlegroups.com
Cc: Soum
Subject: Re: FW: $$Excel-Macros$$ Conditional Formating

 

Dear Sir,

 

It is not working..

 

Please let me know how I can select the all cell in sheet where cell format
is %

 

 




Regards,
Prafull Jadhav
9920553518

 

On 14 March 2014 15:12, Ravinder ravindervbacli...@gmail.com wrote:

Pfa. if not receive.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Ravinder
Sent: Friday, March 14, 2014 3:08 PM
To: excel-macros@googlegroups.com
Cc: 'excelvbacli...@googlegroups.com'; Soum
Subject: FW: $$Excel-Macros$$ Conditional Formating

 

Did you not receive this file..

 

From: Ravinder [mailto:ravinderexcelgr...@gmail.com] 
Sent: Friday, March 14, 2014 2:31 PM
To: 'excel-macros@googlegroups.com';   
Cc: Soum (quote.ex...@gmail.com)
Subject: RE: $$Excel-Macros$$ Conditional Formating

 

Pfa.. may be help you..

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Prafull Jadhav
Sent: Friday, March 14, 2014 1:25 PM
To: excelvbacli...@googlegroups.com; excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Conditional Formating

 

Dear All,

Very Good Afternoon,

I have a small query.

 

I have many table in a sheet which contain formula.

I want to apply conditional formatting based on Percentage (Colour Scales)

 

I am not able to select the cell where cell value format is Percentage .

 

Kindly help me and also explain  the simple way 

I have attached the sample for the same.

 

Regards,
Prafull Jadhav
9920553518

-- 
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: FW: $$Excel-Macros$$ Conditional Formating

2014-03-14 Thread Prafull Jadhav
Dear Sir,

Once i select that cell then i will apply condition formatting selected
cell.
that's why i want to know the selection of that cells which having %
formatting.

Initially, I was doing same by using F5-Selection-Formula and then applied
condition formatting.
but this times other formulas also there in sheet that's why I am not able
to apply the condition formatting.






Regards,
Prafull Jadhav
9920553518


On 14 March 2014 15:47, Ravinder ravinderexcelgr...@gmail.com wrote:

 What you want to do with that selection.color them or else



 Below is code to color % format cell



 Sub Button1_Click()

 Dim ws As Worksheet

 Dim cell As Range

 Set ws = ThisWorkbook.ActiveSheet



 For Each cell In ws.UsedRange

 If cell.NumberFormat = 0.00% Then

 cell.Interior.Color = vbGreen

 End If





 Next



 End Sub



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Prafull Jadhav
 *Sent:* Friday, March 14, 2014 3:36 PM
 *To:* excel-macros@googlegroups.com

 *Subject:* Re: FW: $$Excel-Macros$$ Conditional Formating



 Dear Sir,



 I want a VBA code ;which will select the all cell in sheet where cell
 format is 0.00%




 Regards,
 Prafull Jadhav
 9920553518



 On 14 March 2014 15:31, Ravinder ravindervbacli...@gmail.com wrote:

 You just select the whole range of tables and put condition formatting as
 already applied on $A$1:$L$21, you can increase as per your requirement.



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Prafull Jadhav
 *Sent:* Friday, March 14, 2014 3:29 PM
 *To:* excel-macros@googlegroups.com
 *Cc:* Soum
 *Subject:* Re: FW: $$Excel-Macros$$ Conditional Formating



 Dear Sir,



 It is not working..



 Please let me know how I can select the all cell in sheet where cell
 format is %






 Regards,
 Prafull Jadhav
 9920553518



 On 14 March 2014 15:12, Ravinder ravindervbacli...@gmail.com wrote:

 Pfa. if not receive...



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Ravinder
 *Sent:* Friday, March 14, 2014 3:08 PM
 *To:* excel-macros@googlegroups.com
 *Cc:* 'excelvbacli...@googlegroups.com'; Soum
 *Subject:* FW: $$Excel-Macros$$ Conditional Formating



 Did you not receive this file..



 *From:* Ravinder 
 [mailto:ravinderexcelgr...@gmail.comravinderexcelgr...@gmail.com]

 *Sent:* Friday, March 14, 2014 2:31 PM
 *To:* 'excel-macros@googlegroups.com';
 *Cc:* Soum (quote.ex...@gmail.com)
 *Subject:* RE: $$Excel-Macros$$ Conditional Formating



 Pfa.. may be help you



 *From:* excel-macros@googlegroups.com [
 mailto:excel-macros@googlegroups.com excel-macros@googlegroups.com] *On
 Behalf Of *Prafull Jadhav
 *Sent:* Friday, March 14, 2014 1:25 PM
 *To:* excelvbacli...@googlegroups.com; excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Conditional Formating



 Dear All,

 Very Good Afternoon,

 I have a small query.



 I have many table in a sheet which contain formula.

 I want to apply conditional formatting based on Percentage (Colour Scales)



 I am not able to select the cell where cell value format is Percentage .



 Kindly help me and also explain  the simple way

 I have attached the sample for the same.



 Regards,
 Prafull Jadhav
 9920553518

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

FW: $$Excel-Macros$$ UDF convert to Macro

2013-10-28 Thread Ravinder
 

PFA OR BELOW CODE

 

Sub putspace()

Dim rng As Range

Set rng = Application.InputBox(Please Select Range, Type:=8)

For Each T In rng

k = T

For i = 1 To Len(T)

j = Mid(T, i, 1)

If j = UCase(j) Then

k = WorksheetFunction.Substitute(k, j,j)

End If

T.Offset(0, 1) = WorksheetFunction.Trim(k)

Next

 

Next

 

End Sub

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Prafull Jadhav
Sent: Tuesday, October 29, 2013 10:12 AM
To: excel-macros@googlegroups.com; excelvbacli...@googlegroups.com
Subject: $$Excel-Macros$$ UDF convert to Macro

 

Dear All,

Very Good Morning ..and Have a Great Day Ahead!

 

I got below Function from our group . I have modified it . We can put Space
between word 

for example

PrafullJadhav then output is Prafull Jadhav

AjayNareshRane then output will be Ajay Naresh Rane

 

MY question is Can we create Macro by using same code ...such as for each x
in Range . 

if yes then please send me example and macro code .

if we can't then Please share the reason behind 

I am trying to create but i cant make the same.

 


Function space(T As String)


K = T


For i = 1 To Len(T)


J = Mid(T, i, 1)


If J = UCase(J) Then


K= WorksheetFunction.Substitute(K, J,J)


End If


Next


space = K


End Function

 

 

Regards,
Prafull Jadhav
9920553518

-- 
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.


remove space via macro.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: FW: $$Excel-Macros$$ Need experts help ***URGENT***

2013-09-25 Thread Indrajit $nai
Thanks Ravinder for your kind help. I have not checked it yet, but if I
face any issue, definitely I'll get back to you for further assistance,
hope you would't mind. :)

Thanks  Regards,
Indrajit

Disclaimer:
This electronic message and any files transmitted with it are confidential
and intended solely for the use of the individual or entity to whom they
are addressed. If you are not the intended recipient you are hereby
notified that any disclosure, copying, distribution or taking any action in
reliance on the contents of this information is strictly prohibited and may
be unlawful.


On Tue, Sep 24, 2013 at 2:21 PM, Ravinder ravinderexcelgr...@gmail.comwrote:

 Try this.

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Indrajit $nai
 *Sent:* Tuesday, September 24, 2013 1:40 PM

 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Need experts help ***URGENT***

 ** **

 Hi Guys,

 Kindly find attached the slave file, actually it's same as the master file.
 

 ** **

 ** **

 Thanks  Regards,
 Indrajit
 talk2indra...@gmail.com

 Disclaimer:
 This electronic message and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to whom they
 are addressed. If you are not the intended recipient you are hereby
 notified that any disclosure, copying, distribution or taking any action in
 reliance on the contents of this information is strictly prohibited and may
 be unlawful.



 

 On Tue, Sep 24, 2013 at 12:07 PM, Ravinder ravinderexcelgr...@gmail.com
 wrote:

 Could u pls provide the specific file (slave) in  which you are facing
 this prob.

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Indrajit $nai
 *Sent:* Tuesday, September 24, 2013 3:48 AM


 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Need experts help ***URGENT***

  

 *Hi Experts / Ravinder / Anil,*

  

 I need a small update on that file, which you guys had updated.

  

 I need to collect data from almost 500 + files, and the macro is doing
 it's job pretty well. :)

  

 But facing a new issue, suppose I am collecting this data from the slave
 files on readonly mode, but whenever closing this slave files, the master
 file getting a pop-up message, now you can open the file . Read-write
 mode or Read-only mode, this is slowing up (hanging) master file data
 collecting work. :(

  

 Can you guys have a quick glance on it and making it bit more user
 friendly.

  

 Thanks in advance for all of your support and valuable time.

  

 Thanks  Regards,
 Indrajit
 talk2indra...@gmail.com

 Disclaimer:
 This electronic message and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to whom they
 are addressed. If you are not the intended recipient you are hereby
 notified that any disclosure, copying, distribution or taking any action in
 reliance on the contents of this information is strictly prohibited and may
 be unlawful.

  

  

  

 On Thu, Sep 19, 2013 at 1:54 PM, Indrajit $nai talk2indra...@gmail.com
 wrote:

 Thanks a lot bro.  :D

  

 It works like a charm. :D

  

  

 --
 Indrajit

 Disclaimer:
 This electronic message and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to whom they
 are addressed. If you are not the intended recipient you are hereby
 notified that any disclosure, copying, distribution or taking any action in
 reliance on the contents of this information is strictly prohibited and may
 be unlawful.

  

  

 On Thu, Sep 19, 2013 at 12:53 PM, Ravinder ravinderexcelgr...@gmail.com
 wrote:

 Pfa…..

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Indrajit $nai
 *Sent:* Thursday, September 19, 2013 12:49 PM
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Need experts help ***URGENT***

  

 Both of you are simply AWESOME!!!

  

 Just need a small change, I actually want consolidate a particular range
 from the salve files, like from A3:L3, not the whole file, actually it's
 consolidating the whole file!

  

 Guys can you do some changes on it, and revert me the same.

  

 Thanks in advance.

  

 --
 Indrajit 


 Disclaimer:
 This electronic message and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to whom they
 are addressed. If you are not the intended recipient you are hereby
 notified that any disclosure, copying, distribution or taking any action in
 reliance on the contents of this information is strictly prohibited and may
 be unlawful.

  

Fw: $$Excel-Macros$$ Want conditional lookup

2013-07-24 Thread LAKSHMAN PRASAD
 
 
 
 
- Forwarded Message -
From: Waseem Saifi waseemsa...@gmail.com
To: excel-macros excel-macros@googlegroups.com 
Sent: Wednesday, July 24, 2013 11:50 AM
Subject: Re: $$Excel-Macros$$ Want conditional lookup



Dear Laxman,

PFA.





On Wed, Jul 24, 2013 at 11:13 AM, LAKSHMAN PRASAD lakshman_...@yahoo.com 
wrote:

Dear Expert,
Want conditional lookup from sheet 1 those data which is active in column A , 
plz the attached file
 
Thanks,
Regards 
LAKSHMAN-- 
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 mailto:excel-macros%2bunsubscr...@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.




book 1-solved.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: Fw: Fw: $$Excel-Macros$$ small macro help

2013-07-14 Thread ashish koul
easiest way is simply move this tab or copy the content of the tab  to your
workbook and code too

In case u change the name of sheet .please change it in code too

Sheets(Plan).Select 6th line

Regards
Ashish




Regards
Ashish


On Sun, Jul 14, 2013 at 1:04 PM, shreya vyas shreyavyas...@gmail.comwrote:


 Hey, ashish,
 Thanks a lot.. it is perfect.
 But now how do i paste in my project file ?
 can i just copy paste the code (VBA) directly ?
 Pls guide..

 Thanks and Regards,

   - Forwarded Message -
  *From:* ashish koul koul.ash...@gmail.com
 *To:* excel-macros excel-macros@googlegroups.com
 *Sent:* Sunday, July 14, 2013 10:19 AM
 *Subject:* Re: Fw: $$Excel-Macros$$ small macro help

 check the attachment see if it helps


 On Sun, Jul 14, 2013 at 12:37 AM, shreya vyas shreyavyas...@gmail.comwrote:


 i have attached the new excel file where structure is same, including cell
 no, and also name of the sheet.

 Thank you,
  - Forwarded Message -
 *From:* ashish koul koul.ash...@gmail.com
 *To:* excel-macros excel-macros@googlegroups.com
 *Sent:* Saturday, July 13, 2013 6:46 PM
 *Subject:* Re: $$Excel-Macros$$ small macro help

  Is the structure of plan fixed. you will have values in alternate cells
  , etc



 On Sat, Jul 13, 2013 at 12:47 PM, shreya vyas shreyavyas...@gmail.comwrote:

 hi guys,

 i wanted a help to write a small macro for my project.
 i want to plot some variable values a a table.

 pls find the file attached.

 Thanks  Regards,
 --
 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 
 mailto:excel-macros%2bunsubscr...@googlegroups.comexcel-macros%2bunsubscr...@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.






 --
 *Regards*
 * *
 *Ashish Koul*


  *Visit*
 *My Excel Blog http://www.excelvbamacros.com/*
 Like Us on 
 Facebookhttp://www.facebook.com/pages/Excel-VBA-Codes-Macros/15180389897
 Join Us on Facebook http://www.facebook.com/groups/163491717053198/


 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/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

Fwd: Fw: $$Excel-Macros$$ small macro help

2013-07-13 Thread shreya vyas
i have attached the new excel file where structure is same, including cell
no, and also name of the sheet.

Thank you,
 - Forwarded Message -
*From:* ashish koul koul.ash...@gmail.com
*To:* excel-macros excel-macros@googlegroups.com
*Sent:* Saturday, July 13, 2013 6:46 PM
*Subject:* Re: $$Excel-Macros$$ small macro help

 Is the structure of plan fixed. you will have values in alternate cells  ,
etc



On Sat, Jul 13, 2013 at 12:47 PM, shreya vyas shreyavyas...@gmail.comwrote:

hi guys,

i wanted a help to write a small macro for my project.
i want to plot some variable values a a table.

pls find the file attached.

Thanks  Regards,
-- 
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 
mailto:excel-macros%2bunsubscr...@googlegroups.comexcel-macros%2bunsubscr...@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.






-- 
*Regards*
* *
*Ashish Koul*


 *Visit*
*My Excel Blog http://www.excelvbamacros.com/*
Like Us on 
Facebookhttp://www.facebook.com/pages/Excel-VBA-Codes-Macros/15180389897
Join Us on Facebook http://www.facebook.com/groups/163491717053198/


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/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.




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


Re: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

2013-05-25 Thread Vabz
PFA

Just Drag  Drop first formula!!

Cheers!!

On Saturday, May 25, 2013 3:24:08 PM UTC+5:30, Amit Desai (MERU) wrote:

  Can someone please look at my query  help me?

  
  
 *From:* excel-...@googlegroups.com javascript: [mailto:
 excel-...@googlegroups.com javascript:] *On Behalf Of *Amit Desai (MERU)
 *Sent:* 24 May 2013 13:35
 *To:* excel-...@googlegroups.com javascript:
 *Subject:* $$Excel-Macros$$ Dynamic KM Difference Formula
  
  

 Dear Friends,

  

 I need your kind help in fixing a dynamic formula to find difference in KM 
 based on certain condition. Please see attached file for your reference.

  

 [image: cid:image001.png@01CE5883.5C37E490]

  

 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...@googlegroups.com javascript:.
 To post to this group, send email to excel...@googlegroups.comjavascript:
 .
 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 

RE: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

2013-05-25 Thread Amit Desai (MERU)
No its not that easy.

From: Vabz [mailto:v...@vabs.in]
Sent: 25 May 2013 15:51
To: excel-macros@googlegroups.com
Cc: Amit Desai (MERU)
Subject: Re: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

PFA

Just Drag  Drop first formula!!

Cheers!!

On Saturday, May 25, 2013 3:24:08 PM UTC+5:30, Amit Desai (MERU) wrote:
Can someone please look at my query  help me?

From: excel-...@googlegroups.comjavascript: 
[mailto:excel-...@googlegroups.comjavascript:] On Behalf Of Amit Desai (MERU)
Sent: 24 May 2013 13:35
To: excel-...@googlegroups.comjavascript:
Subject: $$Excel-Macros$$ Dynamic KM Difference Formula

Dear Friends,

I need your kind help in fixing a dynamic formula to find difference in KM 
based on certain condition. Please see attached file for your reference.

[https://groups.google.com/group/excel-macros/attach/871927578343913b/image001.png?part=5authuser=1]

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...@googlegroups.comjavascript:.
To post to this group, send email to excel...@googlegroups.comjavascript:.
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.


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

Re: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

2013-05-25 Thread Vabz
See my formula in attachment, im talking abt it.

Re-attached

Thanks

On Saturday, May 25, 2013 3:52:26 PM UTC+5:30, Amit Desai (MERU) wrote:

  No its not that easy.

  
  
 *From:* Vabz [mailto:v...@vabs.in javascript:] 
 *Sent:* 25 May 2013 15:51
 *To:* excel-...@googlegroups.com javascript:
 *Cc:* Amit Desai (MERU)
 *Subject:* Re: FW: $$Excel-Macros$$ Dynamic KM Difference Formula
  
  

 PFA
  
  
  
 Just Drag  Drop first formula!!
  
  
  
 Cheers!!

 On Saturday, May 25, 2013 3:24:08 PM UTC+5:30, Amit Desai (MERU) wrote:
  
 Can someone please look at my query  help me?

  
  
 *From:* excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] *On 
 Behalf Of *Amit Desai (MERU)
 *Sent:* 24 May 2013 13:35
 *To:* excel-...@googlegroups.com
 *Subject:* $$Excel-Macros$$ Dynamic KM Difference Formula
  
  

 Dear Friends,

  

 I need your kind help in fixing a dynamic formula to find difference in KM 
 based on certain condition. Please see attached file for your reference.

  

 [image: cid:image001.png@01CE5883.5C37E490]

  

 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...@googlegroups.com.
 To post to this group, send email to excel...@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.
   
 --
 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

Re: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

2013-05-25 Thread priti verma
Hi Amit sir,
Please use this formula,if it helps
=ABS(IF(IF(AND(H2=yes,G3=no),AND(H2=yes,G4=yes))=TRUE,D2-D4,0)-IF(AND(H2=yes,G3=yes),D2-D3,0))


On Sat, May 25, 2013 at 3:24 PM, Amit Desai (MERU)
amit.de...@merucabs.comwrote:

  Can someone please look at my query  help me?

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Amit Desai (MERU)
 *Sent:* 24 May 2013 13:35
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Dynamic KM Difference Formula

 ** **

 Dear Friends,

 ** **

 I need your kind help in fixing a dynamic formula to find difference in KM
 based on certain condition. Please see attached file for your reference.**
 **

 ** **

 [image: cid:image001.png@01CE5883.5C37E490]

 ** **

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

RE: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

2013-05-25 Thread Amit Desai (MERU)
YES... this helped me a lot..

Thanks a lot.

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of priti verma
Sent: 25 May 2013 16:13
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Dynamic KM Difference Formula

Hi Amit sir,
Please use this formula,if it helps
=ABS(IF(IF(AND(H2=yes,G3=no),AND(H2=yes,G4=yes))=TRUE,D2-D4,0)-IF(AND(H2=yes,G3=yes),D2-D3,0))

On Sat, May 25, 2013 at 3:24 PM, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
Can someone please look at my query  help me?

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.commailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 24 May 2013 13:35
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Dynamic KM Difference Formula

Dear Friends,

I need your kind help in fixing a dynamic formula to find difference in KM 
based on certain condition. Please see attached file for your reference.

[cid:image001.png@01CE5964.1DAD4760]

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

Re: FW: $$Excel-Macros$$ Re: Need expert advise for multipal Selection

2013-04-18 Thread Lalit Mohan Pandey
Find below link for solution:

http://www.excelfox.com/forum/f2/need-array-formula-help-912/

On Thursday, 18 April 2013 10:50:04 UTC+5:30, Dhaval Shah wrote:

  

 Hello Lalitji,

 Thanks for you formula 
 sir i modified with formula littel bit now its not working actually while 
 i run formula for one single stocks its work  the same time i run formula 
 for too many stocks its dosent work 

 Here with atteach the sheet of Main sheet ( single stocks )  another sheet 
 main sheet revised ( too many stocks ) 

 pls have a look

 Thanks 

 Dhaval Shah 

  

  

 *Warm Regards,*

  

 *Dhaval Shah *

 M) 98240 35253 | O) 079 - 40055253 

 BBM : 2A33C8FB | What's up : 98240 35253 

 [image: email_icon_small] javascript:[image: 
 index]http://www.facebook.com/todashah[image: 
 dd] http://www.linkedin.com/profile/view?id=37508924trk=tab_pro[image: 
 Small-images-Twitter-Logo] https://twitter.com/dhaval4205

  

 *Please consider the enviroment before priting this email *

  

  

 On Wed, Apr 3, 2013 at 12:25 PM, Lalit Mohan Pandey 
 mohan.p...@gmail.comjavascript: 
 wrote:

 Hi Dhaval,

  

 Copy below formula at cell address C11 and confirm it with CSE

 *=MAX(($B$2:$B$68=$S$10)*($A$2:$A$68 = FUTSTK)*$I$2:$I$68)*

  

 Select cell R14:R19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $R$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),1),)*

  

 Select cell S14:S19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $R$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),3),)*

  

 Select cell T14:T19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $R$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),4),)*

  

 Select cell U14:U19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $R$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),12),)*

  

 Select cell V14:V19, press F2 and paste below formuls and confirm it with 
 CSE

 *
 =IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68=$S$11)*($E$1:$E$68=$R$13)*($M$1:$M$680),0,))*ROW($A$1:$A$68),),ROW($A$1:$A$68)),),13),)
 *

  

 Select cell W14:W19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $W$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),1),)*

  

 Select cell X14:X19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $W$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),3),)*

  

 Select cell Y14:Y19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $W$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),4),)*

  

 Select cell Z14:Z19, press F2 and paste below formuls and confirm it with 
 CSE

 *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68 
 =$S$11)*($E$1:$E$68 = $W$13)*($M$1:$M$68  0),0,))*ROW($A$1:$A$68),), 
 ROW($A$1:$A$68)),),12),)*

  

 Select cell AA14:AA19, press F2 and paste below formuls and confirm it 
 with CSE

 *
 =IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68=$S$11)*($E$1:$E$68=$W$13)*($M$1:$M$680),0,))*ROW($A$1:$A$68),),ROW($A$1:$A$68)),),13),)
 *


 Hope it will give you the same you expact.


 On Tuesday, 2 April 2013 12:53:21 UTC+5:30, Dhaval Shah wrote:

 Dear Thanks for u r prompt reply but out put is not as per my requirement 
 pls check the reference sheet 

  

 On Tue, Apr 2, 2013 at 10:49 AM, xlstime xls...@gmail.com wrote:

 Hi Dhaval,

  

 * dhaval shah 
 (1).xlsxhttps://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web
 *

  
 https://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web

 PFA...https://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web

  
 https://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web



 https://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web

 .

 Enjoy
 Team 
 XLShttps://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web

  
 https://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web

 On Tue, Apr 2, 2013 at 10:39 AM, Dhaval Shah *todhav...@gmail.com* 
 wrote:https://docs.google.com/file/d/0B4LBSzxr1QTiVjZoYkRneFFUY1k/edit?usp=drive_web

 cmp is 

FW: $$Excel-Macros$$ conditional formatting

2013-02-20 Thread Manjunath Narayanappa
Dear Abhi,

Can I use formula =IF(AND(A6=2,A72),pass,fail) to find pass n fail
=IF(AND(A6=0,A70),pass,fail) even if it pop up pass it should show green 
 for fail it should show red
Value 0 to 2 = Green
Value greater than 2 = Red

Thanks
Manjunath


From: Abhishek Jain [mailto:abhishek@gmail.com]
Sent: 20 February 2013 08:59
To: Manjunath Narayanappa
Cc: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ conditional formatting

Check attached.
On Wed, Feb 20, 2013 at 2:18 PM, Manjunath Narayanappa 
manjunath.narayana...@aon.co.ukmailto:manjunath.narayana...@aon.co.uk wrote:
Yes

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.commailto:excel-macros@googlegroups.com] On 
Behalf Of Abhishek Jain
Sent: 20 February 2013 07:09
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ conditional formatting

Help me understand:

Value 0 to 2 = Green
Value greater than 2 = Red

Is this what you want?

On Wed, Feb 20, 2013 at 11:55 AM, Manjunath Narayanappa 
manjunath.narayana...@aon.co.ukmailto:manjunath.narayana...@aon.co.uk wrote:
Dear Expert,

I want to create conditional formatting for below information
Please help me on this

Minor (If Cell is =2 should show green if cell is great than 2 should show 
red)

Major(If Cell is  0 red =0 green )

Thanks
Manjunath



PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.
--
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%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.





PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services 

Re: FW: $$Excel-Macros$$ conditional formatting

2013-02-20 Thread Abhishek Jain
Can you share an example data from your end so as to establish what exactly
you want?

On Wed, Feb 20, 2013 at 2:57 PM, Manjunath Narayanappa 
manjunath.narayana...@aon.co.uk wrote:

  Dear Abhi,



 Can I use formula =IF(AND(A6=2,A72),pass,fail) to find pass n fail

 =IF(AND(A6=0,A70),pass,fail) even if it pop up pass it should show
 green  for fail it should show red

 Value 0 to 2 = Green

 Value greater than 2 = Red



 Thanks

 Manjunath





 *From:* Abhishek Jain [mailto:abhishek@gmail.com]
 *Sent:* 20 February 2013 08:59
 *To:* Manjunath Narayanappa
 *Cc:* excel-macros@googlegroups.com

 *Subject:* Re: $$Excel-Macros$$ conditional formatting



 Check attached.

 On Wed, Feb 20, 2013 at 2:18 PM, Manjunath Narayanappa 
 manjunath.narayana...@aon.co.uk wrote:

 Yes



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Abhishek Jain
 *Sent:* 20 February 2013 07:09
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ conditional formatting



 Help me understand:



 Value 0 to 2 = Green

 Value greater than 2 = Red



 Is this what you want?



 On Wed, Feb 20, 2013 at 11:55 AM, Manjunath Narayanappa 
 manjunath.narayana...@aon.co.uk wrote:

 Dear Expert,



 I want to create conditional formatting for below information

 Please help me on this



 Minor (If Cell is =2 should show green if cell is great than 2 should
 show red)



 Major(If Cell is  0 red =0 green )



 Thanks

 Manjunath


  --


 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit
 http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services
 Authority in respect of insurance mediation activities only.

 --
 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.




  --


 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit
 http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services
 Authority in respect of 

Re: FW: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding Holidays as per list

2013-01-27 Thread xlstime
use sumproduct (=(G2-F2)-SUMPRODUCT((HOliday=F2)*(HOliday=G2)))

holiday list as per your requirement


On Mon, Jan 28, 2013 at 12:36 PM, Amit Desai (MERU) amit.de...@merucabs.com
 wrote:

  Dear Masters,

 ** **

 Could you all, please reply.

 ** **

 Best Regards,

 Amit Desai

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Amit Desai (MERU)
 *Sent:* 26 January 2013 10:44
 *To:* excel-macros@googlegroups.com
 *Subject:* FW: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding
 Holidays as per list

 ** **

 Dear Friends,

 ** **

 Please help.

 ** **

 Best Regards,

 Amit Desai

 ** **

 *From:* excel-macros@googlegroups.com [
 mailto:excel-macros@googlegroups.com excel-macros@googlegroups.com] *On
 Behalf Of *Amit Desai (MERU)

 *Sent:* 25 January 2013 13:57
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Calculate Net TAT / time Gap excluding
 Holidays as per list

  ** **

 Dear Friends,

 ** **

 Please help me. I need a formula to calculate time gap or Net TAT between
 work start time  work end Time. It just need to exclude if any holidays
 are declared per list.

 ** **

 The assumption is it has 7 days working in a week except declared holiday.
 

 ** **

 *Sr. No.*

 *work Start Time*

 *Work End Time*

 *Shift Start Time*

 *Shift End Time*

 *Time Gap*

 *Net TAT*

 *Remark*

 1

 25-01-2013 17:00

 27-01-2013 11:00

 09:00

 18:00

 42:00:00

 3:00:00

 Need 3 Hours  as formula netoff Holiday per list

 ** **

 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.

 --
 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.

  

 ** **
  --

 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.

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

RE: FW: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding Holidays as per list

2013-01-27 Thread Amit Desai (MERU)
Will this take care of excluding before Shift Start time (9:00 AM)  after 
ending shift hours (18:00)?

Best Regards,
Amit Desai
+91 98672 32534

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of xlstime
Sent: 28 January 2013 12:55
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding 
Holidays as per list

use sumproduct (=(G2-F2)-SUMPRODUCT((HOliday=F2)*(HOliday=G2)))

holiday list as per your requirement


On Mon, Jan 28, 2013 at 12:36 PM, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
Dear Masters,

Could you all, please reply.

Best Regards,
Amit Desai

From: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.commailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 26 January 2013 10:44
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: FW: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding Holidays 
as per list

Dear Friends,

Please help.

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: 25 January 2013 13:57
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding Holidays as 
per list

Dear Friends,

Please help me. I need a formula to calculate time gap or Net TAT between work 
start time  work end Time. It just need to exclude if any holidays are 
declared per list.

The assumption is it has 7 days working in a week except declared holiday.

Sr. No.

work Start Time

Work End Time

Shift Start Time

Shift End Time

Time Gap

Net TAT

Remark

1

25-01-2013 17:00

27-01-2013 11:00

09:00

18:00

42:00:00

3:00:00

Need 3 Hours  as formula netoff Holiday per list


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.
--
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 post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




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

FW: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding Holidays as per list

2013-01-25 Thread Amit Desai (MERU)
Dear Friends,

Please help.

Best Regards,
Amit Desai
+91 98672 32534

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 25 January 2013 13:57
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Calculate Net TAT / time Gap excluding Holidays as 
per list

Dear Friends,

Please help me. I need a formula to calculate time gap or Net TAT between work 
start time  work end Time. It just need to exclude if any holidays are 
declared per list.

The assumption is it has 7 days working in a week except declared holiday.

Sr. No.

work Start Time

Work End Time

Shift Start Time

Shift End Time

Time Gap

Net TAT

Remark

1

25-01-2013 17:00

27-01-2013 11:00

09:00

18:00

42:00:00

3:00:00

Need 3 Hours  as formula netoff Holiday per list


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.
--
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 post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




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.

-- 
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.




TAT 

FW: $$Excel-Macros$$ need formula Highlight

2013-01-22 Thread Manjunath Narayanappa
Dear Prince,

I'm keen to learn this.  please teach me.

Thanks
Manjunath

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Manjunath Narayanappa
Sent: 18 January 2013 08:09
To: 'excel-macros@googlegroups.com'
Cc: 'Prince'
Subject: $$Excel-Macros$$ need formula Highlight

Dear Prince,

Thank you very much. Can you please teach me how to execute on 2007 excel
 Await your assistance

Regards
Manjunath

From: Prince [mailto:prince141...@gmail.com]
Sent: 17 January 2013 16:32
To: excel-macros@googlegroups.com
Cc: Manjunath Narayanappa
Subject: Re: FW: $$Excel-Macros$$ need formula Highlight

Hi Manjunath,

PFA,

Regards
Prince

On Thursday, January 17, 2013 6:41:46 PM UTC+5:30, Manjunath Narayanappa wrote:
Dear all,

Please can I get macro for below requests

Regards
Manjunath


From: excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] On Behalf 
Of Manjunath Narayanappa
Sent: 17 January 2013 08:47
To: 'excel-...@googlegroups.com'
Subject: $$Excel-Macros$$ need formula Highlight

Dear Expert,

Good afternoon  have a nice day :)

I have a data in the attached spreadsheet, automatically data in B column 
should get highlighted when there is a duplicate or repeated entry.

Please help me on this.

Thanks
Manjunath



PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.
--
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 post to this group, send email to excel-...@googlegroups.com.
To unsubscribe from this group, send email to excel-macros...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.





PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.



PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.
--
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.





PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated

Re: FW: $$Excel-Macros$$ need formula Highlight

2013-01-22 Thread Prince
Hi Manjunath,

Please see this if this can help you.

http://www.free-training-tutorial.com/conditional-formatting.html

Regards
Prince

Manjunath 

On Tuesday, January 22, 2013 4:54:11 PM UTC+5:30, Manjunath Narayanappa 
wrote:

  Thank you very much. I was not knowing abt conditional formatting.

 Is there any link to learn more abt Conditional formatting

  

 Regarda

 Manjunath

  
  
 *From:* excel-...@googlegroups.com javascript: [mailto:
 excel-...@googlegroups.com javascript:] *On Behalf Of *Kuldeep Singh
 *Sent:* 22 January 2013 10:05
 *To:* excel-...@googlegroups.com javascript:
 *Subject:* Re: FW: $$Excel-Macros$$ need formula Highlight
  
  
  
  
  
 1st Conditional Formatting:
  
  
  
 [image: Inline image 1]
  
 2nd Conditional Formatting Rules Manager:
  
  
  
 [image: Inline image 2]
  
  
   
 Regards,
 Kuldeep Singh
  
 Info Edge India Limited (naukri.com)
  
 Phone.: +91-120-4763789, Extn.: 789,9716615535
 naukri...@gmail.com javascript: || www.naukri.com
 *Please* *Consider the environment. Please don't print this e-mail unless 
 you really need to.*
  
  
   
 On Tue, Jan 22, 2013 at 3:02 PM, Manjunath Narayanappa 
 manjunath@aon.co.uk javascript: wrote:
  
 Dear Prince,

  

 I'm keen to learn this.  please teach me.

  

 Thanks

 Manjunath

  
  
 *From:* excel-...@googlegroups.com javascript: [mailto:
 excel-...@googlegroups.com javascript:] *On Behalf Of *Manjunath 
 Narayanappa
 *Sent:* 18 January 2013 08:09
 *To:* 'excel-...@googlegroups.com javascript:'
 *Cc:* 'Prince'
  

 *Subject:* $$Excel-Macros$$ need formula Highlight

  
  
 Dear Prince,

  

 Thank you very much. Can you please teach me how to execute on 2007 excel

  Await your assistance

  

 Regards

 Manjunath

  
  
 *From:* Prince [mailto:prince...@gmail.com javascript:] 
 *Sent:* 17 January 2013 16:32
 *To:* excel-...@googlegroups.com javascript:
 *Cc:* Manjunath Narayanappa
 *Subject:* Re: FW: $$Excel-Macros$$ need formula Highlight
  
  

 Hi Manjunath,
  
  
  
 PFA,
  
  
  
 Regards
  
 Prince

 On Thursday, January 17, 2013 6:41:46 PM UTC+5:30, Manjunath Narayanappa 
 wrote:
  
 Dear all,

  

 Please can I get macro for below requests

  

 Regards

 Manjunath

  

  
  
 *From:* excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] *On 
 Behalf Of *Manjunath Narayanappa
 *Sent:* 17 January 2013 08:47
 *To:* 'excel-...@googlegroups.com'
 *Subject:* $$Excel-Macros$$ need formula Highlight
  
  
  
 Dear Expert,

  

 Good afternoon  have a nice day :)

  

 I have a data in the attached spreadsheet, automatically data in B column 
 should get highlighted when there is a duplicate or repeated entry.

  

 Please help me on this.

  

 Thanks

 Manjunath
  
  
  --
  

 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit 
 http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services 
 Authority in respect of insurance mediation activities only.

 -- 
 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 post to this group, send email to excel-...@googlegroups.com.
 To unsubscribe from this group, send email to 
 excel-macros...@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
  
  
  
  
  --
  

 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit 
 http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services 
 Authority in respect of insurance mediation activities only.
   
  
  --
  

 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail

Re: FW: $$Excel-Macros$$ need formula Highlight

2013-01-22 Thread Kuldeep Singh
Hi Manjunath,

See below pdf. I hope it will help you.

*http://ide20.com/upload/ModuleAE/Lesson01.pdf*
*http://ide20.com/upload/ModuleAE/Lesson02.pdf*
*http://ide20.com/upload/ModuleAE/Lesson03.pdf*
*http://ide20.com/upload/ModuleAE/Lesson04.pdf*

http://lis.dickinson.edu/technology/training/Tutorials/2010/excel/excel_cond_format.pdf
http://wbc.fit.edu/courses/longcourses/home/Microsoft%20Excel/Conditional%20Formatting.pdf
http://pd.clcillinois.edu/manuals/clctech/Excel/Excel_2010_Unit_3_PG.pdf
http://chandoo.org/wp/tag/conditional-formatting/

Regards,
Kuldeep Singh
Info Edge India Limited (naukri.com)
Phone.: +91-120-4763789, Extn.: 789,9716615535
naukrikuld...@gmail.com || www.naukri.com
*Please* *Consider the environment. Please don't print this e-mail unless
you really need to.*
*
*
On Tue, Jan 22, 2013 at 4:59 PM, Prince prince141...@gmail.com wrote:

 Hi Manjunath,

 Please see this if this can help you.

 http://www.free-training-tutorial.com/conditional-formatting.html

 Regards
 Prince

 Manjunath


 On Tuesday, January 22, 2013 4:54:11 PM UTC+5:30, Manjunath Narayanappa
 wrote:

  Thank you very much. I was not knowing abt conditional formatting.

 Is there any link to learn more abt Conditional formatting



 Regarda

 Manjunath



 *From:* excel-...@googlegroups.com [mailto:excel-...@**googlegroups.com]
 *On Behalf Of *Kuldeep Singh

 *Sent:* 22 January 2013 10:05
 *To:* excel-...@googlegroups.com

 *Subject:* Re: FW: $$Excel-Macros$$ need formula Highlight





 1st Conditional Formatting:



 [image: Inline image 1]

 2nd Conditional Formatting Rules Manager:



 [image: Inline image 2]



 Regards,
 Kuldeep Singh

 Info Edge India Limited (naukri.com)

 Phone.: +91-120-4763789, Extn.: 789,9716615535
 naukri...@gmail.com || www**.naukri.com http://www.naukri.com/

 *Please* *Consider the environment. Please don't print this e-mail
 unless you really need to.*



 On Tue, Jan 22, 2013 at 3:02 PM, Manjunath Narayanappa 
 manjunath@aon.co.**uk wrote:

 Dear Prince,



 I'm keen to learn this.  please teach me.



 Thanks

 Manjunath



 *From:* excel-...@googlegroups.com [mailto:excel-...@**googlegroups.com]
 *On Behalf Of *Manjunath Narayanappa

 *Sent:* 18 January 2013 08:09
 *To:* 'excel-...@googlegroups.com**'
 *Cc:* 'Prince'


 *Subject:* $$Excel-Macros$$ need formula Highlight



 Dear Prince,



 Thank you very much. Can you please teach me how to execute on 2007 excel

  Await your assistance



 Regards

 Manjunath



 *From:* Prince [mailto:prince...@gmail.com**]
 *Sent:* 17 January 2013 16:32
 *To:* excel-...@googlegroups.com

 *Cc:* Manjunath Narayanappa
 *Subject:* Re: FW: $$Excel-Macros$$ need formula Highlight



 Hi Manjunath,



 PFA,



 Regards

 Prince

 On Thursday, January 17, 2013 6:41:46 PM UTC+5:30, Manjunath Narayanappa
 wrote:

 Dear all,



 Please can I get macro for below requests



 Regards

 Manjunath





 *From:* excel-...@googlegroups.com [mailto:excel-...@**googlegroups.com]
 *On Behalf Of *Manjunath Narayanappa
 *Sent:* 17 January 2013 08:47
 *To:* 'excel-...@googlegroups.com'
 *Subject:* $$Excel-Macros$$ need formula Highlight



 Dear Expert,



 Good afternoon  have a nice day :)



 I have a data in the attached spreadsheet, automatically data in B column
 should get highlighted when there is a duplicate or repeated entry.



 Please help me on this.



 Thanks

 Manjunath


  --


 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit
 http://www.aon.com/uk/en/**email-footer/aon-uk-limited.**jsphttp://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services
 Authority in respect of insurance mediation activities only.

 --
 Join official Facebook page of this forum @ https://www.facebook.com/**
 discussexcel 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 post to this group, send email to excel-...@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros...@googlegroups.**com.
 Visit this group

FW: $$Excel-Macros$$ need formula Highlight

2013-01-22 Thread Manjunath Narayanappa
Dear Kuldeep,

Its really cool link which you have sent me... There was a glow in my face.

Thanks for sending me. Please send me if you have any more link for other 
functions

Regards
Manjunath

From: Kuldeep Singh [mailto:naukrikuld...@gmail.com]
Sent: 22 January 2013 11:41
To: excel-macros@googlegroups.com
Cc: Manjunath Narayanappa; Prince
Subject: Re: FW: $$Excel-Macros$$ need formula Highlight


Hi Manjunath,

See below pdf. I hope it will help you.

http://ide20.com/upload/ModuleAE/Lesson01.pdf
http://ide20.com/upload/ModuleAE/Lesson02.pdf
http://ide20.com/upload/ModuleAE/Lesson03.pdf
http://ide20.com/upload/ModuleAE/Lesson04.pdf

http://lis.dickinson.edu/technology/training/Tutorials/2010/excel/excel_cond_format.pdf
http://wbc.fit.edu/courses/longcourses/home/Microsoft%20Excel/Conditional%20Formatting.pdf
http://pd.clcillinois.edu/manuals/clctech/Excel/Excel_2010_Unit_3_PG.pdf
http://chandoo.org/wp/tag/conditional-formatting/

Regards,
Kuldeep Singh
Info Edge India Limited (naukri.comhttp://naukri.com/)
Phone.: +91-120-4763789, Extn.: 789,9716615535
naukrikuld...@gmail.commailto:naukrikuld...@gmail.com || 
www.naukri.comhttp://www.naukri.com/
Please Consider the environment. Please don't print this e-mail unless you 
really need to.

On Tue, Jan 22, 2013 at 4:59 PM, Prince 
prince141...@gmail.commailto:prince141...@gmail.com wrote:
Hi Manjunath,

Please see this if this can help you.

http://www.free-training-tutorial.com/conditional-formatting.html

Regards
Prince

Manjunath


On Tuesday, January 22, 2013 4:54:11 PM UTC+5:30, Manjunath Narayanappa wrote:
Thank you very much. I was not knowing abt conditional formatting.
Is there any link to learn more abt Conditional formatting

Regarda
Manjunath

From: excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] On Behalf 
Of Kuldeep Singh

Sent: 22 January 2013 10:05
To: excel-...@googlegroups.com

Subject: Re: FW: $$Excel-Macros$$ need formula Highlight


1st Conditional Formatting:

Error! Filename not specified.
2nd Conditional Formatting Rules Manager:

Error! Filename not specified.

Regards,
Kuldeep Singh
Info Edge India Limited (naukri.comhttp://naukri.com/)
Phone.: +91-120-4763789tel:%2B91-120-4763789, Extn.: 
789,9716615535tel:9716615535
naukri...@gmail.com || www.naukri.comhttp://www.naukri.com/

Please Consider the environment. Please don't print this e-mail unless you 
really need to.

On Tue, Jan 22, 2013 at 3:02 PM, Manjunath Narayanappa 
manjunath@aon.co.uk wrote:
Dear Prince,

I'm keen to learn this.  please teach me.

Thanks
Manjunath

From: excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] On Behalf 
Of Manjunath Narayanappa

Sent: 18 January 2013 08:09
To: 'excel-...@googlegroups.com'
Cc: 'Prince'

Subject: $$Excel-Macros$$ need formula Highlight

Dear Prince,

Thank you very much. Can you please teach me how to execute on 2007 excel
 Await your assistance

Regards
Manjunath

From: Prince [mailto:prince...@gmail.com]
Sent: 17 January 2013 16:32
To: excel-...@googlegroups.com

Cc: Manjunath Narayanappa
Subject: Re: FW: $$Excel-Macros$$ need formula Highlight

Hi Manjunath,

PFA,

Regards
Prince

On Thursday, January 17, 2013 6:41:46 PM UTC+5:30, Manjunath Narayanappa wrote:
Dear all,

Please can I get macro for below requests

Regards
Manjunath


From: excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] On Behalf 
Of Manjunath Narayanappa
Sent: 17 January 2013 08:47
To: 'excel-...@googlegroups.com'
Subject: $$Excel-Macros$$ need formula Highlight

Dear Expert,

Good afternoon  have a nice day :)

I have a data in the attached spreadsheet, automatically data in B column 
should get highlighted when there is a duplicate or repeated entry.

Please help me on this.

Thanks
Manjunath



PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.
--
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

FW: $$Excel-Macros$$ need formula Highlight

2013-01-17 Thread Manjunath Narayanappa
Dear all,

Please can I get macro for below requests

Regards
Manjunath


From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Manjunath Narayanappa
Sent: 17 January 2013 08:47
To: 'excel-macros@googlegroups.com'
Subject: $$Excel-Macros$$ need formula Highlight

Dear Expert,

Good afternoon  have a nice day :)

I have a data in the attached spreadsheet, automatically data in B column 
should get highlighted when there is a duplicate or repeated entry.

Please help me on this.

Thanks
Manjunath



PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.
--
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.





PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



For Aon's standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

Aon UK Limited

Registered Office: 8 Devonshire Square, London EC2M 4PL

Registered in London No. 210725 . VAT Registration No. 480 8401 48



Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.

-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




Email received.xls
Description: Email received.xls


Re: FW: $$Excel-Macros$$ need formula Highlight

2013-01-17 Thread ravinder negi
you can use conditional formatting for this 

--- On Thu, 1/17/13, Manjunath Narayanappa manjunath.narayana...@aon.co.uk 
wrote:

From: Manjunath Narayanappa manjunath.narayana...@aon.co.uk
Subject: FW: $$Excel-Macros$$ need formula Highlight
To: 'excel-macros@googlegroups.com' excel-macros@googlegroups.com
Date: Thursday, January 17, 2013, 6:41 PM



 






Dear all,
 
Please can I get macro for below requests
 
Regards
Manjunath
 
 


From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Manjunath Narayanappa

Sent: 17 January 2013 08:47

To: 'excel-macros@googlegroups.com'

Subject: $$Excel-Macros$$ need formula Highlight


 

Dear Expert,
 
Good afternoon  have a nice day :)
 
I have a data in the attached spreadsheet, automatically data in B column 
should get highlighted when there is a duplicate or repeated entry.
 
Please help me on this.
 
Thanks
Manjunath

 





PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL







For Aon’s standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp



Aon UK Limited



Registered Office: 8 Devonshire Square, London EC2M 4PL



Registered in London No. 210725 . VAT Registration No. 480 8401 48







Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.
--


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 post to this group, send email to excel-macros@googlegroups.com.

To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.

Visit this group at http://groups.google.com/group/excel-macros?hl=en.

 

 






PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL







For Aon’s standard conditions associated with this e-mail please visit 
http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp



Aon UK Limited



Registered Office: 8 Devonshire Square, London EC2M 4PL



Registered in London No. 210725 . VAT Registration No. 480 8401 48







Aon UK Limited is authorised and regulated by the Financial Services Authority 
in respect of insurance mediation activities only.







-- 

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 post to this group, send email to excel-macros@googlegroups.com.

To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.

Visit this group at http://groups.google.com/group/excel-macros?hl=en.

 

 

-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr

Re: FW: $$Excel-Macros$$ need formula Highlight

2013-01-17 Thread Prince
Hi Manjunath,

PFA,

Regards
Prince

On Thursday, January 17, 2013 6:41:46 PM UTC+5:30, Manjunath Narayanappa 
wrote:

  Dear all,

  

 Please can I get macro for below requests

  

 Regards

 Manjunath

  

  
  
 *From:* excel-...@googlegroups.com javascript: [mailto:
 excel-...@googlegroups.com javascript:] *On Behalf Of *Manjunath 
 Narayanappa
 *Sent:* 17 January 2013 08:47
 *To:* 'excel-...@googlegroups.com javascript:'
 *Subject:* $$Excel-Macros$$ need formula Highlight
  
  
  
 Dear Expert,

  

 Good afternoon  have a nice day :)

  

 I have a data in the attached spreadsheet, automatically data in B column 
 should get highlighted when there is a duplicate or repeated entry.

  

 Please help me on this.

  

 Thanks

 Manjunath
  
  
  --
  

 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit 
 http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services 
 Authority in respect of insurance mediation activities only.

 -- 
 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 post to this group, send email to excel-...@googlegroups.comjavascript:
 .
 To unsubscribe from this group, send email to 
 excel-macros...@googlegroups.com javascript:.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.
  
  
  
 --

 PLEASE CONSIDER THE ENVIRONMENT BEFORE PRINTING THIS E-MAIL



 For Aon’s standard conditions associated with this e-mail please visit 
 http://www.aon.com/uk/en/email-footer/aon-uk-limited.jsp

 Aon UK Limited

 Registered Office: 8 Devonshire Square, London EC2M 4PL

 Registered in London No. 210725 . VAT Registration No. 480 8401 48



 Aon UK Limited is authorised and regulated by the Financial Services 
 Authority in respect of insurance mediation activities only.
  

-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




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


FW: $$Excel-Macros$$ Help req.

2012-12-12 Thread Sayed Abdul Azeem (QFD)
Dear neeraj chauhan

 

 

 

I hope this will help you.

 

 

 

 

 

 

Regards

 

Syed Azeem

 

 

 

 

From: excel-macros@googlegroups.com
[mailto:excel-macros@googlegroups.com] On Behalf Of neeraj chauhan
Sent: Wednesday, December 12, 2012 10:59 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Help req.

 

Dear Experts,

 

kindly find the attached sheet. i want to make the conditional format,
but how to make. revert me

-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 
 

-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




Help Req.xlsx
Description: Help Req.xlsx


Re: FW: $$Excel-Macros$$ Help req.

2012-12-12 Thread neeraj chauhan
Thanks sir

On Wed, Dec 12, 2012 at 1:49 PM, Sayed Abdul Azeem (QFD) sabdulaz...@ccc.ae
 wrote:

 Dear neeraj chauhan

 ** **

 ** **

 ** **

 I hope this will help you.

 ** **

 ** **

 ** **

 ** **

 ** **

 ** **

 Regards

 ** **

 *Syed Azeem*

 ** **

 ** **

 ** **

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *neeraj chauhan
 *Sent:* Wednesday, December 12, 2012 10:59 AM
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Help req.

 ** **

 Dear Experts,

 ** **

 kindly find the attached sheet. i want to make the conditional format, but
 how to make. revert me

 --
 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.

  

 --
 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros?hl=en.




-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




Fw: $$Excel-Macros$$ Dynamic Fixed Asset Depreciation Schedule *

2012-12-01 Thread respuzy
Hello Gurus

i am trying to develop a very dynamic Fixed Asset depreciation schedule but
facing a slight formula or logic challenge and as usual seeking your expert
advice. Basically what this current schedule does is assuming you want to
depreciate your asset for say 5 years, starting from 2013 you will see
information for only the five years ending 2017 so at the end of the 5th
year, the asset would have been fully depreciated, assuming however in 2014
you acquired another asset and you expert to depreciate it for 5 years
also, it means by the end of  2018 you should have depreciated the 2nd
acquisition fully,

 The Scenario

in cell B9, i have entered the no of years for depreciation for the first
asset purchased  in 2013 and am using the
formula IF($B$9=COLUMN(A1),,B11+1) in cell c11 to be able to cut off
years after 2017 ( ie 5 years),

The Problem

however if i enter the new purchase of asset in cell B27, then i would have
to enter the no of yrs for deprn for this asset in cell c9, then i expert
this formula to be modified IF($B$9=COLUMN(A1),,B11+1) so that the cut
off year will be in 2018, it has to be dynamic such that if i enter say a
new purchase in csll D27 and i enter say a the no of yr for deprn for this
asset in cell E9 the cut off year would be 2020

-- 
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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




Sent from my BlackBerry® smartphone from Airtel Ghana

-Original Message-
From: Hilary Lomotey resp...@gmail.com
Sender: excel-macros@googlegroups.com
Date: Thu, 29 Nov 2012 17:31:58 
To: excel-macrosEXCEL-MACROS@googlegroups.com
Reply-To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Dynamic Fixed Asset Depreciation Schedule *

This message is eligible for Automatic Cleanup! (resp...@gmail.com) 
Add cleanup rule: 
https://www.boxbe.com/popup?url=https%3A%2F%2Fwww.boxbe.com%2Fcleanup%3Ftoken%3DkyH0VhaRJnkrdHRLFNuNEqqpQr6%252BXSlKZuxuwiVdzN713QHEvj1c0Atc%252Bczign77T4KpMTzBuVHwQ3kdKNHwDcdELDg5sLGisTOz53dS2nSrRc6%252Bs4Bb1t396sEeXjfhFeoe68yRhgE%253D%26key%3Di2U6CianDR%252FtCgspNcaSLcOeF%252F1CQBbIfGc5YzNmp%252BE%253Dtc=13009448229_93838451
More info: 
http://blog.boxbe.com/general/boxbe-automatic-cleanup?tc=13009448229_93838451



Depreciation Schedule.xlsb
Description: Binary data


FW: $$Excel-Macros$$

2012-11-06 Thread Sayed Abdul Azeem (QFD)
Dear NOORAIN ANSARI



I am having huge data like attached file DATA sheet, from description
column selected contains need to copy sheet2 with vba code which is very
helpful for me, please see attached file sheet Data and sheet2 for your
understand.

Thanks in advance

 

 

 

 

Azeem Quraishi

 

From: excel-macros@googlegroups.com
[mailto:excel-macros@googlegroups.com] On Behalf Of NOORAIN ANSARI
Sent: Wednesday, November 07, 2012 10:37 AM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$

 

Dear Azeem,

Please explain more, what is your exact need.

On Tue, Nov 6, 2012 at 9:08 PM, Sayed Abdul Azeem (QFD) 
sabdulaz...@ccc.ae wrote:

Dear  Experts 

 

Can somebody please help me out. How to generate in the VBA selected
contains shift to another column, find attached sample file 

 

 

 

 

 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com .
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 
 




-- 
With Regards,
Noorain Ansari
http:// http://www.noorainansari.com noorainansari.com
http://www.noorainansari.com 
http:// http://www.excelvbaclinic.blogspot.com excelvbaclinic.com
http://www.excelvbaclinic.blogspot.com  

 

 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
 
 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.




SAMPLE.xlsx
Description: SAMPLE.xlsx


FW: $$Excel-Macros$$ macro: delete base on table

2012-10-04 Thread Rajan_Verma
 

Here is thread on this Solution , Please visit 

 

http://www.excelfox.com/forum/f20/delete-list-contain-matching-second-list-5
89/

 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: 04 October 2012 9:58
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ macro: delete base on table

 

 

Hi,

 

Use this Code, Just Create Two Name Ranges, 

 

Sheet1!B2=rngRange

Sheet2!B2 = MapDelete

 

 

Sub ExcludeFromList()

 

Dim objDicMap As Object

Dim VarArrData

Dim VarArrResult

Dim rngCell   As Range



Dim lngCOunt As Long



VarArrData = Intersect(Range(rngRange).CurrentRegion,
Range(rngRange).CurrentRegion.Offset(1))

Set objDicMap = CreateObject(Scripting.Dictionary)' Dictionary
Object get Mapping



'Filling Dictionary

For Each rngCell In Intersect(Range(MapDelete).CurrentRegion,
Range(MapDelete).CurrentRegion.Offset(1))

If Not objDicMap.exists(rngCell.Value) Then objDicMap.Add
rngCell.Value, rngCell.Value

Next rngCell



'Filling Result Array From Data List which would not Include Mapping
Data

For lngCOunt = LBound(VarArrData) To UBound(VarArrData)

If Not objDicMap.exists(VarArrData(lngCOunt, 1)) Then

If Not IsArray(VarArrResult) Then

ReDim VarArrResult(0 To 0)

VarArrResult(0) = VarArrData(lngCOunt, 1)

Else

ReDim Preserve VarArrResult(UBound(VarArrResult) + 1)

VarArrResult(UBound(VarArrResult)) = VarArrData(lngCOunt, 1)

End If

End If

Next lngCOunt

'Clear Old List

Range(rngRange).CurrentRegion.Offset(1).Clear

'Replace with new list

Range(rngRange).Offset(1).Resize(UBound(VarArrResult)).Value =
Application.Transpose(VarArrResult)



Set objDicMap = Nothing

Set rngCell = Nothing



End Sub

 

Keep Excelling J

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of pawel lupinski
Sent: 04 October 2012 9:30
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ macro: delete base on table

 

Hi All,

I'd like to ask you for favour, can you help me with these. I have a table
code with codes. From this table I'd like to excclude all codes for table
to delete (tab table). Right now I'm using or function in vba, but when
I want to add something, each time I need to open VB and change it. Is there
any way that I can manage it from to delete table?

Thanks

Pawel

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com.
 
 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.




FW: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH COLUMN E AND G AND UPDATE THE VALUES.

2012-09-17 Thread Siraj Momin (BTG)
 

 

From: Siraj Momin (BTG) 
Sent: Monday, September 17, 2012 7:23 AM
To: 'excel-macros@googlegroups.com'
Subject: RE: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C
WITH COLUMN E AND G AND UPDATE THE VALUES.

 

Hi prince

 

May be I did not explain you properly see the attachment for requirement

 

 

Siraj

 

From: excel-macros@googlegroups.com 
[mailto:excel-macros@googlegroups.com] On Behalf Of Prince Dubey
Sent: Sunday, September 16, 2012 8:47 PM
To: excel-macros@googlegroups.com
Cc: Prince Dubey; Siraj Momin (BTG)
Subject: Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C
WITH COLUMN E AND G AND UPDATE THE VALUES.

 

Hi Siraj,

 

please see the attachment 

 

 

Regards

Prince 

On Sunday, September 16, 2012 6:55:18 PM UTC+5:30, Siraj Momin (BTG)
wrote:

Hi Prince 

 

Thank you for the reply, I am sending the attachment on your personal
email id also, I reduced the data but still it taking time I have more
data than this to update, I am not familiar with array formulas that is
the problem

 

Can you help me out in this 

 

Thanks

 

Siraj

 

 

From: Prince Dubey [mailto:prince...@gmail.com javascript: ] 
Sent: Sunday, September 16, 2012 3:42 PM
To: excel-...@googlegroups.com javascript: 
Cc: Siraj Momin (BTG)
Subject: Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C
WITH COLUMN E AND G AND UPDATE THE VALUES.

 

Hi Siraj,

 

As i saw u r using loop on the rang which runs fine on small amount of
data but in case of large amount of data it will take huge time to
process  so do one thing instead of looping on the range get all data in
an Array then apply same logic as u r doing one the range.

 

Or 

 

Please share ur workbook with us.

 

regards

 

Prince

 



On Sunday, September 16, 2012 3:10:57 PM UTC+5:30, Siraj Momin (BTG)
wrote:

ANY SOLUTION POSSIBLE

 

SIRAJ

 

 

From: excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] On
Behalf Of Siraj Momin (BTG)
Sent: Monday, September 10, 2012 5:41 PM
To: excel-...@googlegroups.com
Subject: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH
COLUMN E AND G AND UPDATE THE VALUES.

 

Dear members

 

The following macro I am using to match the values of col A and Col C
with Col E and Col G and if matched update the value of Col B to Col. F
and the value of Col D to Col H. Its working fine on small data but on
large data its taking time can anyone suggest some correction or
improvement in this macro.

 

Due to the size limit of the group I did not attached the file.

 

 

Siraj

 

 

Option Explicit

 

Sub checksyssystem1()

Dim r As Long

Dim r1 As Long

Dim c As Long

 

For r = 2 To Cells(Rows.Count, a).End(xlUp).Row

 

 

For r1 = 2 To Cells(Rows.Count, g).End(xlUp).Row

If Cells(r, a) = Cells(r1, e) And Cells(r, c) = Cells(r1, g)
Then

Cells(r1, f) = Cells(r, b)

Cells(r1, h) = Cells(r, d)

If Cells(r, a) =  Then

  Exit For

  End If

  

End If

Next r1

Next r

 

End Sub

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-...@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros...@googlegroups.com.
 
 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or confidential data in a workbook.
Forum owners and members are not responsible for any loss

Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH COLUMN E AND G AND UPDATE THE VALUES.

2012-09-17 Thread Paul Schreiner
Sorry,
I actually wrote this last week, but evidently never posted it!
I noticed that your code example and your sample file and description is 
different.
you SAID that if you find a match, you want to replace B with F and D with H
but in your code:
Cells(r1, f) = Cells(r, b)
Cells(r1, h) = Cells(r, d)
 
Does the opposite.
It replaces F with B and H with D.

Not sure which you actually want, but...
I executed your code on 10,000 rows, and it took 26 minutes. (on my Window7 
machine, with Excel 2010).
I wrote the following code using a Dictionary Object, and it didn't register 
any 
time for 10,000 rows.
So I ran it against 100,000 rows, and it took 6 seconds.

The premise is that I create a Dictionary Object.
I then read the columns E-H and use the E and G columns to create an index 
for 
the  Dictionary
and store the F and H columns as the value of the Dictionary entry.
I'm only storing the FIRST EG combination in the dictionary.
If you find a second match and want to overwrite it, then we'll have to modify 
the code.

I then read through columns A-D and use AC and check for a matching Dictionary 
entry.
hope this helps,
Paul
-
Option Explicit
Sub CheckSystem2()
    Dim Dict_Data
    Dim r As Long
    Dim c As Long
    Dim nRows, dArray
    Dim tstart, tstop, tElapsed, tMin, tSec
    
    tstart = Timer
    Set Dict_Data = CreateObject(Scripting.Dictionary)
    
    nRows = Cells(Rows.Count, a).End(xlUp).Row
    '
    '  Read Data and store FIRST record in Dictionary.
    '
    For r = 2 To nRows
    If (r Mod 100 = 0) Then Application.StatusBar = Loading Dictionary:  
 
r   of   Cells(Rows.Count, a).End(xlUp).Row
    If (Not Dict_Data.exists(Cells(r, e).Value  |  Cells(r, 
g).Value)) Then
    Dict_Data.Add Cells(r, e).Value  |  Cells(r, g).Value, 
Cells(r, b).Value  |  Cells(r, d).Value
    End If
    Next r
    '
    ' Read Data and update from Dictionary value
    '
    For r = 2 To nRows
    If (r Mod 100 = 0) Then
    Application.StatusBar = r   of   Cells(Rows.Count, 
a).End(xlUp).Row
    End If
    If (Dict_Data.exists(Cells(r, a).Value  |  Cells(r, c).Value)) 
Then
    dArray = Split(Dict_Data.Item(Cells(r, a).Value  |  Cells(r, 
c).Value), |)
    Cells(r, f) = dArray(0)
    Cells(r, h) = dArray(1)
    End If
    Next r
    '
    Application.StatusBar = False
    tstop = Timer
    tElapsed = tstop - tstart
    tMin = tElapsed \ 60
    tSec = tElapsed Mod 60
    
    MsgBox Finished  Chr(13)  tMin   min   tSec   sec
End Sub

 
 
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: Siraj Momin (BTG) smo...@ccc.ae
To: excel-macros@googlegroups.com
Sent: Mon, September 17, 2012 3:27:41 AM
Subject: FW: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH 
COLUMN E AND G AND UPDATE THE VALUES.


 
 
From:Siraj Momin (BTG) 
Sent: Monday, September 17, 2012 7:23 AM
To: 'excel-macros@googlegroups.com'
Subject: RE: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH 
COLUMN E AND G AND UPDATE THE VALUES.
 
Hi prince
 
May be I did not explain you properly see the attachment for requirement
 
 
Siraj
 
From:excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Prince Dubey
Sent: Sunday, September 16, 2012 8:47 PM
To: excel-macros@googlegroups.com
Cc: Prince Dubey; Siraj Momin (BTG)
Subject: Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH 
COLUMN E AND G AND UPDATE THE VALUES.
 
Hi Siraj,
 
please see the attachment 
 
 
Regards
Prince 

On Sunday, September 16, 2012 6:55:18 PM UTC+5:30, Siraj Momin (BTG) wrote:
Hi Prince 
 
Thank you for the reply, I am sending the attachment on your personal email id 
also, I reduced the data but still it taking time I have more data than this to 
update, I am not familiar with array formulas that is the problem
 
Can you help me out in this 
 
Thanks
 
Siraj
 
 
From:Prince Dubey [mailto:prince...@gmail.com] 
Sent: Sunday, September 16, 2012 3:42 PM
To: excel-...@googlegroups.com
Cc: Siraj Momin (BTG)
Subject: Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH 
COLUMN E AND G AND UPDATE THE VALUES.
 
Hi Siraj,
 
As i saw u r using loop on the rang which runs fine on small amount of data but 
in case of large amount of data it will take huge time to process  so do one 
thing instead of looping on the range get all

FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH COLUMN E AND G AND UPDATE THE VALUES.

2012-09-16 Thread Siraj Momin (BTG)
ANY SOLUTION POSSIBLE

 

SIRAJ

 

 

From: excel-macros@googlegroups.com
[mailto:excel-macros@googlegroups.com] On Behalf Of Siraj Momin (BTG)
Sent: Monday, September 10, 2012 5:41 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH
COLUMN E AND G AND UPDATE THE VALUES.

 

Dear members

 

The following macro I am using to match the values of col A and Col C
with Col E and Col G and if matched update the value of Col B to Col. F
and the value of Col D to Col H. Its working fine on small data but on
large data its taking time can anyone suggest some correction or
improvement in this macro.

 

Due to the size limit of the group I did not attached the file.

 

 

Siraj

 

 

Option Explicit

 

Sub checksyssystem1()

Dim r As Long

Dim r1 As Long

Dim c As Long

 

For r = 2 To Cells(Rows.Count, a).End(xlUp).Row

 

 

For r1 = 2 To Cells(Rows.Count, g).End(xlUp).Row

If Cells(r, a) = Cells(r1, e) And Cells(r, c) = Cells(r1, g)
Then

Cells(r1, f) = Cells(r, b)

Cells(r1, h) = Cells(r, d)

If Cells(r, a) =  Then

  Exit For

  End If

  

End If

Next r1

Next r

 

End Sub

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com.
 
 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.




Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH COLUMN E AND G AND UPDATE THE VALUES.

2012-09-16 Thread Prince Dubey
Hi Siraj,
 
As i saw u r using loop on the rang which runs fine on small amount of data 
but in case of large amount of data it will take huge time to process  so 
do one thing instead of looping on the range get all data in an Array then 
apply same logic as u r doing one the range.

Or 

Please share ur workbook with us.

regards

Prince



On Sunday, September 16, 2012 3:10:57 PM UTC+5:30, Siraj Momin (BTG) wrote:

 ANY SOLUTION POSSIBLE

  

 SIRAJ

  

  

 *From:* excel-...@googlegroups.com javascript: [mailto:
 excel-...@googlegroups.com javascript:] *On Behalf Of *Siraj Momin (BTG)
 *Sent:* Monday, September 10, 2012 5:41 PM
 *To:* excel-...@googlegroups.com javascript:
 *Subject:* $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH 
 COLUMN E AND G AND UPDATE THE VALUES.

  

 Dear members

  

 The following macro I am using to match the values of col A and Col C with 
 Col E and Col G and if matched update the value of Col B to Col. F and the 
 value of Col D to Col H. Its working fine on small data but on large data 
 its taking time can anyone suggest some correction or improvement in this 
 macro.

  

 Due to the size limit of the group I did not attached the file.

  

  

 Siraj

  

  

 Option Explicit

  

 Sub checksyssystem1()

 Dim r As Long

 Dim r1 As Long

 Dim c As Long

  

 For r = 2 To Cells(Rows.Count, a).End(xlUp).Row

  

  

 For r1 = 2 To Cells(Rows.Count, g).End(xlUp).Row

 If Cells(r, a) = Cells(r1, e) And Cells(r, c) = Cells(r1, g) Then

 Cells(r1, f) = Cells(r, b)

 Cells(r1, h) = Cells(r, d)

 If Cells(r, a) =  Then

   Exit For

   End If

   

 End If

 Next r1

 Next r

  

 End Sub

 -- 
 Join official facebook page of this forum @ 
 https://www.facebook.com/discussexcel
  
 FORUM RULES (1120+ 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. 
  
 6) Jobs posting is not allowed.
  
 7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
  
 NOTE : Don't ever post personal or 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 post to this group, send email to excel-...@googlegroups.comjavascript:
 .
 To unsubscribe from this group, send email to 
 excel-macros...@googlegroups.com javascript:.
  
  


-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.




RE: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH COLUMN E AND G AND UPDATE THE VALUES.

2012-09-16 Thread Siraj Momin (BTG)
Hi prince

 

May be I did not explain you properly see the attachment for requirement

 

 

Siraj

 

From: excel-macros@googlegroups.com
[mailto:excel-macros@googlegroups.com] On Behalf Of Prince Dubey
Sent: Sunday, September 16, 2012 8:47 PM
To: excel-macros@googlegroups.com
Cc: Prince Dubey; Siraj Momin (BTG)
Subject: Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C
WITH COLUMN E AND G AND UPDATE THE VALUES.

 

Hi Siraj,

 

please see the attachment 

 

 

Regards

Prince 

On Sunday, September 16, 2012 6:55:18 PM UTC+5:30, Siraj Momin (BTG)
wrote:

Hi Prince 

 

Thank you for the reply, I am sending the attachment on your personal
email id also, I reduced the data but still it taking time I have more
data than this to update, I am not familiar with array formulas that is
the problem

 

Can you help me out in this 

 

Thanks

 

Siraj

 

 

From: Prince Dubey [mailto:prince...@gmail.com javascript: ] 
Sent: Sunday, September 16, 2012 3:42 PM
To: excel-...@googlegroups.com javascript: 
Cc: Siraj Momin (BTG)
Subject: Re: FW: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C
WITH COLUMN E AND G AND UPDATE THE VALUES.

 

Hi Siraj,

 

As i saw u r using loop on the rang which runs fine on small amount of
data but in case of large amount of data it will take huge time to
process  so do one thing instead of looping on the range get all data in
an Array then apply same logic as u r doing one the range.

 

Or 

 

Please share ur workbook with us.

 

regards

 

Prince

 



On Sunday, September 16, 2012 3:10:57 PM UTC+5:30, Siraj Momin (BTG)
wrote:

ANY SOLUTION POSSIBLE

 

SIRAJ

 

 

From: excel-...@googlegroups.com [mailto:excel-...@googlegroups.com] On
Behalf Of Siraj Momin (BTG)
Sent: Monday, September 10, 2012 5:41 PM
To: excel-...@googlegroups.com
Subject: $$Excel-Macros$$ MATCHING THE VALUE OF COLUMN A AND C WITH
COLUMN E AND G AND UPDATE THE VALUES.

 

Dear members

 

The following macro I am using to match the values of col A and Col C
with Col E and Col G and if matched update the value of Col B to Col. F
and the value of Col D to Col H. Its working fine on small data but on
large data its taking time can anyone suggest some correction or
improvement in this macro.

 

Due to the size limit of the group I did not attached the file.

 

 

Siraj

 

 

Option Explicit

 

Sub checksyssystem1()

Dim r As Long

Dim r1 As Long

Dim c As Long

 

For r = 2 To Cells(Rows.Count, a).End(xlUp).Row

 

 

For r1 = 2 To Cells(Rows.Count, g).End(xlUp).Row

If Cells(r, a) = Cells(r1, e) And Cells(r, c) = Cells(r1, g)
Then

Cells(r1, f) = Cells(r, b)

Cells(r1, h) = Cells(r, d)

If Cells(r, a) =  Then

  Exit For

  End If

  

End If

Next r1

Next r

 

End Sub

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-...@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros...@googlegroups.com.
 
 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel

Re: Fwd: FW: $$Excel-Macros$$ Send PDF Email from Excel - Mail Merge

2012-09-14 Thread ravinder negi
Hi Everyone,,
I am trying to use chrome instead using Internet explorer.
Here is the code I have (the code the works for Internet Explorer and
the modified code for Chrome):

Dim IEapp As Object
Dim CHromeapp As Object

'Open Internet Explorer and Display the Route
Set IEapp = CreateObject(InternetExplorer.Application)
With IEapp
.Visible = True
.Navigate strURL
End With

'Wait until Internet Explorer finishes loading
While IEapp.Busy
DoEvents
Wend

'Open Google Chrome Web Browser and Display the Route
Set CHromeapp = CreateObject(Chrome.Application)
With CHromeapp
.Visible = True
.Navigate strURL
End With

'Wait until Internet Explorer finishes loading
While CHromeapp.Busy
DoEvents
Wend

I'm looking forward to using Chrome with my database!

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.




FW: $$Excel-Macros$$ Required Revenue started from Date..

2012-09-10 Thread Anil Bhange
Hi Don,

Thanks for your post,

I was trying to understand the formula, if we use array formula then below 
highlighted cells also getting fixed and formula is not giving the proper 
result,

=INDEX($D$1:$IV$1,MATCH(TRUE,D2:IV20,0))

Can you please share the formula in excel file, to understand better.

Regards,Anil Bhange
IP Phone - 800105 | Mobile - +31 6 1192 3971

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of dguillett1
Sent: Friday, August 31, 2012 03:10 PM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Required Revenue started from Date..

This is an array formula that must be entered using ctrl+shift+enter
=INDEX($D$1:$IV$1,MATCH(TRUE,D2:IV20,0))


Don Guillett
Microsoft Excel Developer
SalesAid Software
dguille...@gmail.commailto:dguille...@gmail.com

From: Kuldeep Singhmailto:naukrikuld...@gmail.com
Sent: Friday, August 31, 2012 7:35 AM
To: excel-macros@googlegroups.commailto:excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Required Revenue started from Date..


Hi Experts,

I want to required Revenue started from Date.


Regards,
Kuldeep Singh
Phone.: +91-120-4763789, Extn.: 789
naukrikuld...@gmail.commailto:naukrikuld...@gmail.com || 
www.naukri.comhttp://www.naukri.com
Please Consider the environment. Please don't print this e-mail unless you 
really need to.
--
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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.

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE : Don't ever post personal or 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 post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.


--
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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.

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE : Don't ever post personal or 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 post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.commailto:excel-macros+unsubscr...@googlegroups.com.


--
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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.

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE : Don't ever post personal or 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 post to this group, send email to 
excel-macros@googlegroups.commailto:excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 

FW: $$Excel-Macros$$ countdown macro needed.........

2012-09-07 Thread Anil Bhange
Hi Experts,

I am also looking for this solution, can you please help.

Regards,    Anil Bhange
IP Phone - 800105 | Mobile - +31 6 1192 3971


-Original Message-
From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Dhananjay Pinjan
Sent: Wednesday, August 29, 2012 07:39 PM
To: excel-macros
Subject: $$Excel-Macros$$ countdown macro needed.

Hi Experts,
I need a countdown macro as per attched file. Pl. help.


Regards,
Dhananjay

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.


-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.




Need Countdown Macro.xlsx
Description: Need Countdown Macro.xlsx


Re: FW: $$Excel-Macros$$ resolve the problem

2012-08-27 Thread amar takale
Noorin sir
Can y send me this file in excel 2003

On Mon, Aug 27, 2012 at 4:03 PM, NOORAIN ANSARI noorain.ans...@gmail.comwrote:

 Dear Neeraj,

 See attached sheet, Hope it will help to you.


 On Mon, Aug 27, 2012 at 3:23 PM, Neeraj neerajchauhan...@gmail.comwrote:

  ** **

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Neeraj
 *Sent:* Saturday, August 25, 2012 11:41 AM

 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ resolve the problem

  ** **

 Dear Experts,

 ** **

 Kindly find the attached sheet I want to difference the running hrs
 between first reading and last reading.

 --
 Join official facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES (1120+ 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.

 6) Jobs posting is not allowed.

 7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

 NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.

  

 --
 Join official facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES (1120+ 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.

 6) Jobs posting is not allowed.

 7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

 NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.






 --
 With Regards,
 Noorain Ansari
 http:// 
 http://www.noorainansari.comnoorainansari.comhttp://www.noorainansari.com
 http:// 
 http://www.excelvbaclinic.blogspot.comexcelvbaclinic.comhttp://www.excelvbaclinic.blogspot.comhttp://accesssqclinic.blogspot.in/


  --
 Join official facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES (1120+ 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.

 6) Jobs posting is not allowed.

 7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

 NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.




-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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, 

RE: FW: $$Excel-Macros$$ resolve the problem

2012-08-27 Thread Neeraj
Dear noorain,

 

I don't want to change the colum min and mix.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of NOORAIN ANSARI
Sent: Monday, August 27, 2012 4:04 PM
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ resolve the problem

 

Dear Neeraj,

See attached sheet, Hope it will help to you.

On Mon, Aug 27, 2012 at 3:23 PM, Neeraj neerajchauhan...@gmail.com wrote:

 

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Neeraj
Sent: Saturday, August 25, 2012 11:41 AM


To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ resolve the problem

 

Dear Experts,

 

Kindly find the attached sheet I want to difference the running hrs between
first reading and last reading.

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com .
 
 

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com .
 
 




-- 
With Regards,
Noorain Ansari
 http://www.noorainansari.com http://noorainansari.com
http://www.noorainansari.com 
 http://www.excelvbaclinic.blogspot.com http://excelvbaclinic.com
http://www.excelvbaclinic.blogspot.com  

 

 

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com.
 
 

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ 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

RE: FW: $$Excel-Macros$$ resolve the problem

2012-08-27 Thread Neeraj
Thanks noorain.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of NOORAIN ANSARI
Sent: Monday, August 27, 2012 5:07 PM
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ resolve the problem

 

Dear Neeraj,

Try below formula :

=IF(COUNTIF($C$2:C2,C2)=1,LARGE(IF($C$2:$C$1006=C2,$D$2:$D$1006),1)-SMALL(IF
($C$2:$C$1006=C2,$D$2:$D$1006),1),)
with ctrl+shift+enter

See attached sheet for more clarity.

Aside to Amar : It is also in Excel 2003 Version




On Mon, Aug 27, 2012 at 4:42 PM, Neeraj neerajchauhan...@gmail.com wrote:

Dear noorain,

 

I don't want to change the colum min and mix.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of NOORAIN ANSARI
Sent: Monday, August 27, 2012 4:04 PM
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ resolve the problem

 

Dear Neeraj,

See attached sheet, Hope it will help to you.

On Mon, Aug 27, 2012 at 3:23 PM, Neeraj neerajchauhan...@gmail.com wrote:

 

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Neeraj
Sent: Saturday, August 25, 2012 11:41 AM


To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ resolve the problem

 

Dear Experts,

 

Kindly find the attached sheet I want to difference the running hrs between
first reading and last reading.

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com .
 
 

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com .
 
 




-- 
With Regards,
Noorain Ansari
 http://www.noorainansari.com http://noorainansari.com
http://www.noorainansari.com 
 http://www.excelvbaclinic.blogspot.com http://excelvbaclinic.com
http://www.excelvbaclinic.blogspot.com  

 

 

-- 
Join official facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ 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. 
 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or 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

Re: FW: $$Excel-Macros$$ resolve the problem

2012-08-27 Thread NOORAIN ANSARI
You are always welcome bro..

On Mon, Aug 27, 2012 at 5:22 PM, Neeraj neerajchauhan...@gmail.com wrote:

  Thanks noorain.

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *NOORAIN ANSARI
 *Sent:* Monday, August 27, 2012 5:07 PM

 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ resolve the problem

  ** **

 Dear Neeraj,

 Try below formula :


 =IF(COUNTIF($C$2:C2,C2)=1,LARGE(IF($C$2:$C$1006=C2,$D$2:$D$1006),1)-SMALL(IF($C$2:$C$1006=C2,$D$2:$D$1006),1),)
 with ctrl+shift+enter

 See attached sheet for more clarity.

 *Aside to Amar* : It is also in Excel 2003 Version


 

 On Mon, Aug 27, 2012 at 4:42 PM, Neeraj neerajchauhan...@gmail.com
 wrote:

 Dear noorain,

  

 I don’t want to change the colum min and mix.

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *NOORAIN ANSARI
 *Sent:* Monday, August 27, 2012 4:04 PM
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ resolve the problem

  

 Dear Neeraj,

 See attached sheet, Hope it will help to you.

 On Mon, Aug 27, 2012 at 3:23 PM, Neeraj neerajchauhan...@gmail.com
 wrote:

  

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Neeraj
 *Sent:* Saturday, August 25, 2012 11:41 AM


 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ resolve the problem

  

 Dear Experts,

  

 Kindly find the attached sheet I want to difference the running hrs
 between first reading and last reading.

 --
 Join official facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES (1120+ 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.

 6) Jobs posting is not allowed.

 7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

 NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.

  

 --
 Join official facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES (1120+ 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.

 6) Jobs posting is not allowed.

 7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

 NOTE : Don't ever post personal or 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 post to this group, send email to excel-macros@googlegroups.com.
 To unsubscribe from this group, send email to
 excel-macros+unsubscr...@googlegroups.com.

  




 --
 With Regards,
 Noorain Ansari
 http:// 
 http://www.noorainansari.comnoorainansari.comhttp://www.noorainansari.com
 http:// 
 http://www.excelvbaclinic.blogspot.comexcelvbaclinic.comhttp://www.excelvbaclinic.blogspot.com
 

  

  

 --
 Join official facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES (1120+ 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.

 6) Jobs posting is not allowed.

 7) Sharing copyrighted ebooks/pirated ebooks/their links

RE: FW: $$Excel-Macros$$ Macro timings should be multiple based on date changing

2012-07-01 Thread Lalit Mohan
Hi Lokesh,

 

We are always happy to help you.

 

Regards,

Lalit Mohan

www.excelfox.com/forum

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: Saturday, June 30, 2012 8:36 PM
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Macro timings should be multiple based on
date changing

 

Hi Brother,

The below formula is working thanks a lot.

Have a nice day. 

Regards
Lokesh.M

On Sat, Jun 30, 2012 at 8:32 PM, Rajan_Verma rajanverma1...@gmail.com
wrote:

 

Use this:

 

=IF(NOT(ISBLANK(D12)),D12+(((A13-A12)+1)/24*4),)

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: 30 June 2012 8:30
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Macro timings should be multiple based on
date changing

 

yes thank you, now the i have changed the date format.

And one more correction if there is no user timings and macro timings the
result should be shown blank not for 4:00:00.

please do the needful brother.

Regards
Lokesh.M

On Sat, Jun 30, 2012 at 8:26 PM, Rajan_Verma rajanverma1...@gmail.com
wrote:

Hi Lokesh

 

You must apply [h]:mm:ss format on that cell to get proper result

 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: 30 June 2012 10:38
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Use this One in G11:

 

=D11+(((A12-A11)+1)/24*4) 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki


Sent: 30 June 2012 7:31
To: excel-macros@googlegroups.com

Subject: Re: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Hi Lalit,

Thanks for replying to my query.

Actually i needed when i am changing the dates the macro timings i.e.
4:00:00 should be multiplied like this 8:00:00, 12:00:00, 16:00:00 and this
timings will added to the total timings.

Examples:

   TimingsMacro timings   Total timings
 5:30:15 +  4:00:00   =   9:30:15 
 5:30:15 +  8:00:00   =  13:30:15
 5:30:15 + 12:00:00  =  17:30:15
 5:30:15 + 12:00:00  =  21:30:15

Please refer attached excel sheet i have mentioned date wise results so do
the needful.

Regards
Lokesh.M

On Fri, Jun 29, 2012 at 8:01 PM, Lalit Mohan mohan.pande...@gmail.com
wrote:

Hi Lokesh,

 

Please find the attached. Change the formula accordingly.

 

 

Regards,

Lalit Mohan

www.excelfox.com/forum

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: Friday, June 29, 2012 7:18 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Hi All,

Please find the attached excel file, and i need total macro timings based on
date changes. 

Let me know for any clarification.

Regards
Lokesh.M

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send

Re: FW: $$Excel-Macros$$ Macro timings should be multiple based on date changing

2012-07-01 Thread Lokesh Loki
Hi Lalit,

Thank you so much for your help.

I wish you have a great future ahead. Once again thanks for all to helping
me.

Regards
Lokesh.M

On Sun, Jul 1, 2012 at 8:38 PM, Lalit Mohan mohan.pande...@gmail.comwrote:

 Hi Lokesh,

 ** **

 We are always happy to help you.

 ** **

 *Regards,*

 *Lalit Mohan*

 *www.excelfox.com/forum*

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki
 *Sent:* Saturday, June 30, 2012 8:36 PM

 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ Macro timings should be multiple
 based on date changing

 ** **

 Hi Brother,

 The below formula is working thanks a lot.

 Have a nice day.

 Regards
 Lokesh.M

 On Sat, Jun 30, 2012 at 8:32 PM, Rajan_Verma rajanverma1...@gmail.com
 wrote:

  

 Use this:

  

 =IF(NOT(ISBLANK(D12)),D12+(((A13-A12)+1)/24*4),)

  

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki
 *Sent:* 30 June 2012 8:30
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ Macro timings should be multiple
 based on date changing

  

 yes thank you, now the i have changed the date format.

 And one more correction if there is no user timings and macro timings the
 result should be shown blank not for 4:00:00.

 please do the needful brother.

 Regards
 Lokesh.M

 On Sat, Jun 30, 2012 at 8:26 PM, Rajan_Verma rajanverma1...@gmail.com
 wrote:

 Hi Lokesh

  

 *You must apply [h]:mm:ss format on that cell to get proper result*

  

  

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

  

 *From:* Rajan_Verma [mailto:rajanverma1...@gmail.com]
 *Sent:* 30 June 2012 10:38
 *To:* 'excel-macros@googlegroups.com'
 *Subject:* RE: $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Use this One in G11:

  

 =D11+(((A12-A11)+1)/24*4) 

  

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

  

 *From:* excel-macros@googlegroups.com
 [mailto:excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki


 *Sent:* 30 June 2012 7:31
 *To:* excel-macros@googlegroups.com

 *Subject:* Re: $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Hi Lalit,

 Thanks for replying to my query.

 Actually i needed when i am changing the dates the macro timings i.e.
 4:00:00 should be multiplied like this 8:00:00, 12:00:00, 16:00:00 and this
 timings will added to the total timings.

 Examples:

   * TimingsMacro timings   Total timings*
  5:30:15 +  4:00:00   =   9:30:15
  5:30:15 +  8:00:00   =  13:30:15
  5:30:15 + 12:00:00  =  17:30:15
  5:30:15 + 12:00:00  =  21:30:15

 Please refer attached excel sheet i have mentioned date wise results so do
 the needful.

 Regards
 Lokesh.M

 On Fri, Jun 29, 2012 at 8:01 PM, Lalit Mohan mohan.pande...@gmail.com
 wrote:

 Hi Lokesh,

  

 Please find the attached. Change the formula accordingly.

  

  

 *Regards,*

 *Lalit Mohan*

 *www.excelfox.com/forum*

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki
 *Sent:* Friday, June 29, 2012 7:18 PM
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Hi All,

 Please find the attached excel file, and i need total macro timings based
 on date changes.

 Let me know for any clarification.

 Regards
 Lokesh.M

 --
 FORUM RULES (986+ 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

 To unsubscribe, send a blank email to
 excel-macros+unsubscr...@googlegroups.com

 --
 FORUM RULES (986+ 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

FW: $$Excel-Macros$$ Macro timings should be multiple based on date changing

2012-06-30 Thread Rajan_Verma
Hi Lokesh

 

You must apply [h]:mm:ss format on that cell to get proper result

 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: 30 June 2012 10:38
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Use this One in G11:

 

=D11+(((A12-A11)+1)/24*4) 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: 30 June 2012 7:31
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Hi Lalit,

Thanks for replying to my query.

Actually i needed when i am changing the dates the macro timings i.e.
4:00:00 should be multiplied like this 8:00:00, 12:00:00, 16:00:00 and this
timings will added to the total timings.

Examples:

   TimingsMacro timings   Total timings
 5:30:15 +  4:00:00   =   9:30:15 
 5:30:15 +  8:00:00   =  13:30:15
 5:30:15 + 12:00:00  =  17:30:15
 5:30:15 + 12:00:00  =  21:30:15

Please refer attached excel sheet i have mentioned date wise results so do
the needful.

Regards
Lokesh.M

On Fri, Jun 29, 2012 at 8:01 PM, Lalit Mohan mohan.pande...@gmail.com
wrote:

Hi Lokesh,

 

Please find the attached. Change the formula accordingly.

 

 

Regards,

Lalit Mohan

www.excelfox.com/forum

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: Friday, June 29, 2012 7:18 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Hi All,

Please find the attached excel file, and i need total macro timings based on
date changes. 

Let me know for any clarification.

Regards
Lokesh.M

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com 

 

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com

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

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula 

Re: FW: $$Excel-Macros$$ Macro timings should be multiple based on date changing

2012-06-30 Thread Lokesh Loki
yes thank you, now the i have changed the date format.

And one more correction if there is no user timings and macro timings the
result should be shown blank not for 4:00:00.

please do the needful brother.

Regards
Lokesh.M

On Sat, Jun 30, 2012 at 8:26 PM, Rajan_Verma rajanverma1...@gmail.comwrote:

 Hi Lokesh

 ** **

 *You must apply [h]:mm:ss format on that cell to get proper result*

 ** **

 ** **

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

 ** **

 *From:* Rajan_Verma [mailto:rajanverma1...@gmail.com]
 *Sent:* 30 June 2012 10:38
 *To:* 'excel-macros@googlegroups.com'
 *Subject:* RE: $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

 ** **

 Use this One in G11:

 ** **

 =D11+(((A12-A11)+1)/24*4) 

 ** **

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

 ** **

 *From:* excel-macros@googlegroups.com
 [mailto:excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki

 *Sent:* 30 June 2012 7:31
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

 ** **

 Hi Lalit,

 Thanks for replying to my query.

 Actually i needed when i am changing the dates the macro timings i.e.
 4:00:00 should be multiplied like this 8:00:00, 12:00:00, 16:00:00 and this
 timings will added to the total timings.

 Examples:

   * TimingsMacro timings   Total timings*
  5:30:15 +  4:00:00   =   9:30:15
  5:30:15 +  8:00:00   =  13:30:15
  5:30:15 + 12:00:00  =  17:30:15
  5:30:15 + 12:00:00  =  21:30:15

 Please refer attached excel sheet i have mentioned date wise results so do
 the needful.

 Regards
 Lokesh.M

 On Fri, Jun 29, 2012 at 8:01 PM, Lalit Mohan mohan.pande...@gmail.com
 wrote:

 Hi Lokesh,

  

 Please find the attached. Change the formula accordingly.

  

  

 *Regards,*

 *Lalit Mohan*

 *www.excelfox.com/forum*

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki
 *Sent:* Friday, June 29, 2012 7:18 PM
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Hi All,

 Please find the attached excel file, and i need total macro timings based
 on date changes.

 Let me know for any clarification.

 Regards
 Lokesh.M

 --
 FORUM RULES (986+ 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

 To unsubscribe, send a blank email to
 excel-macros+unsubscr...@googlegroups.com

 --
 FORUM RULES (986+ 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

 To unsubscribe, send a blank email to
 excel-macros+unsubscr...@googlegroups.com

 ** **

 --
 FORUM RULES (986+ 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 

RE: FW: $$Excel-Macros$$ Macro timings should be multiple based on date changing

2012-06-30 Thread Rajan_Verma
 

Use this:

 

=IF(NOT(ISBLANK(D12)),D12+(((A13-A12)+1)/24*4),)

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: 30 June 2012 8:30
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Macro timings should be multiple based on
date changing

 

yes thank you, now the i have changed the date format.

And one more correction if there is no user timings and macro timings the
result should be shown blank not for 4:00:00.

please do the needful brother.

Regards
Lokesh.M

On Sat, Jun 30, 2012 at 8:26 PM, Rajan_Verma rajanverma1...@gmail.com
wrote:

Hi Lokesh

 

You must apply [h]:mm:ss format on that cell to get proper result

 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: 30 June 2012 10:38
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Use this One in G11:

 

=D11+(((A12-A11)+1)/24*4) 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki


Sent: 30 June 2012 7:31
To: excel-macros@googlegroups.com

Subject: Re: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Hi Lalit,

Thanks for replying to my query.

Actually i needed when i am changing the dates the macro timings i.e.
4:00:00 should be multiplied like this 8:00:00, 12:00:00, 16:00:00 and this
timings will added to the total timings.

Examples:

   TimingsMacro timings   Total timings
 5:30:15 +  4:00:00   =   9:30:15 
 5:30:15 +  8:00:00   =  13:30:15
 5:30:15 + 12:00:00  =  17:30:15
 5:30:15 + 12:00:00  =  21:30:15

Please refer attached excel sheet i have mentioned date wise results so do
the needful.

Regards
Lokesh.M

On Fri, Jun 29, 2012 at 8:01 PM, Lalit Mohan mohan.pande...@gmail.com
wrote:

Hi Lokesh,

 

Please find the attached. Change the formula accordingly.

 

 

Regards,

Lalit Mohan

www.excelfox.com/forum

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: Friday, June 29, 2012 7:18 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Macro timings should be multiple based on date
changing

 

Hi All,

Please find the attached excel file, and i need total macro timings based on
date changes. 

Let me know for any clarification.

Regards
Lokesh.M

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com
mailto:excel-macros%2bunsubscr...@googlegroups.com 

 

-- 
FORUM RULES (986+ 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

Re: FW: $$Excel-Macros$$ Macro timings should be multiple based on date changing

2012-06-30 Thread Lokesh Loki
Hi Brother,

The below formula is working thanks a lot.

Have a nice day.

Regards
Lokesh.M

On Sat, Jun 30, 2012 at 8:32 PM, Rajan_Verma rajanverma1...@gmail.comwrote:

 ** **

 Use this:

 ** **

 =IF(NOT(ISBLANK(D12)),D12+(((A13-A12)+1)/24*4),)

 ** **

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki
 *Sent:* 30 June 2012 8:30
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ Macro timings should be multiple
 based on date changing

 ** **

 yes thank you, now the i have changed the date format.

 And one more correction if there is no user timings and macro timings the
 result should be shown blank not for 4:00:00.

 please do the needful brother.

 Regards
 Lokesh.M

 On Sat, Jun 30, 2012 at 8:26 PM, Rajan_Verma rajanverma1...@gmail.com
 wrote:

 Hi Lokesh

  

 *You must apply [h]:mm:ss format on that cell to get proper result*

  

  

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

  

 *From:* Rajan_Verma [mailto:rajanverma1...@gmail.com]
 *Sent:* 30 June 2012 10:38
 *To:* 'excel-macros@googlegroups.com'
 *Subject:* RE: $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Use this One in G11:

  

 =D11+(((A12-A11)+1)/24*4) 

  

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

  

 *From:* excel-macros@googlegroups.com
 [mailto:excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki


 *Sent:* 30 June 2012 7:31
 *To:* excel-macros@googlegroups.com

 *Subject:* Re: $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Hi Lalit,

 Thanks for replying to my query.

 Actually i needed when i am changing the dates the macro timings i.e.
 4:00:00 should be multiplied like this 8:00:00, 12:00:00, 16:00:00 and this
 timings will added to the total timings.

 Examples:

   * TimingsMacro timings   Total timings*
  5:30:15 +  4:00:00   =   9:30:15
  5:30:15 +  8:00:00   =  13:30:15
  5:30:15 + 12:00:00  =  17:30:15
  5:30:15 + 12:00:00  =  21:30:15

 Please refer attached excel sheet i have mentioned date wise results so do
 the needful.

 Regards
 Lokesh.M

 On Fri, Jun 29, 2012 at 8:01 PM, Lalit Mohan mohan.pande...@gmail.com
 wrote:

 Hi Lokesh,

  

 Please find the attached. Change the formula accordingly.

  

  

 *Regards,*

 *Lalit Mohan*

 *www.excelfox.com/forum*

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Lokesh Loki
 *Sent:* Friday, June 29, 2012 7:18 PM
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ Macro timings should be multiple based on
 date changing

  

 Hi All,

 Please find the attached excel file, and i need total macro timings based
 on date changes.

 Let me know for any clarification.

 Regards
 Lokesh.M

 --
 FORUM RULES (986+ 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

 To unsubscribe, send a blank email to
 excel-macros+unsubscr...@googlegroups.com

 --
 FORUM RULES (986+ 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

 To unsubscribe

FW: $$Excel-Macros$$ Region wise count

2012-06-13 Thread Rajan_Verma
See the revised version

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: 13 June 2012 6:37
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Region wise count

 

Hi Loki,

 

Here is a VBA Solution for you, see the attached sheet.

Hope you will like it  J

 

 

 

 

Function GetCount(rngLookup, rngLookUPValue, Optional VarMatchingCriteria =
) As Integer



Dim rngCell As Range

Dim rngSum  As Range

Dim lngResult   As Long

lngResult = 0

For Each rngCell In rngLookup

If rngCell.Value = rngLookUPValue.Value Then

Set rngSum = rngCell.Resize(rngCell.Offset(, 4).Value).Offset(,
6).Resize(rngCell.Offset(, 4).Value, 3)

lngResult = lngResult + WorksheetFunction.CountIf(rngSum,
VarMatchingCriteria)

End If

GetCount = lngResult

If rngCell.Row 
Worksheets(rngCell.Parent.Name).UsedRange.Rows.Count Then Exit Function

Next



End Function

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Lokesh Loki
Sent: 13 June 2012 3:46
To: excel-macros@googlegroups.com
Cc: NOORAIN ANSARI
Subject: $$Excel-Macros$$ Region wise count

 

Hi Noorain,

 

For small correction, I have modified the data for the attached excel file.
And I need count formula based on region. 

 

Please do the needful, and if you have any clarification let me know.

 

 

Regards,

 

Lokesh. M 

Xchanging Technology Services |CBRE - AP 

Xchanging Tower | SJR iPark | EPIP Area | Whitefield | Bangalore | 560066

(1-800-920-6957) EXT-1648

lokesha.marisidda...@cbre.com| http://www.cbre.com/ www.cbre.com

--- Be Clean, Go Green ---

Please consider the environment before printing this message

 

 

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com

-- 
FORUM RULES (986+ 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

To unsubscribe, send a blank email to excel-macros+unsubscr...@googlegroups.com

Copy of Region wise count.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Fw: $$Excel-Macros$$ Name a table

2012-06-11 Thread chhajersandeep
Dear all,

Please try to find out any solution!

Sandeep Chhajer
Sent on my BlackBerry® from Vodafone

-Original Message-
From: chhajersand...@gmail.com
Sender: excel-macros@googlegroups.com
Date: Mon, 11 Jun 2012 10:59:23 
To: excel-macros@googlegroups.com
Reply-To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Name a table

Dear Mentors,

I want to create tables in Excel 2010 as following

My data in excel is 
Column 1.Column 2
Reserve_surplus Other_exp
Capital Reserve. Salary
Securities Premium.   Printing
Revaluation reserve.   Insurance
General Reserve.Transport
 Housekeeping

Now I want the macro to create a table for each column which will be starting 
from 2nd row of the column to last row non black row with the table name being 
the first row of the respective column.
In my case table will be created for A2: A5 and name of the table = 
Reserve_surplus

And so on.

Thanking you inn advance.

Sandeep Chhajer.
Sent on my BlackBerry® from Vodafone

-- 
FORUM RULES (986+ 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

To unsubscribe, send a blank email to excel-macros+unsubscr...@googlegroups.com

-- 
FORUM RULES (986+ 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

To unsubscribe, send a blank email to excel-macros+unsubscr...@googlegroups.com


FW: $$Excel-Macros$$ Need Help - To rename the sheet

2012-06-07 Thread Rajan_Verma
I think I misunderstood your question , you can use this macro :

 

Private Sub Workbook_Open()

Dim wksSheet As Worksheet

For Each wksSheet In Me.Worksheets

If wksSheet.Name = Result Then

wksSheet.Copy ,
ThisWorkbook.Worksheets(ThisWorkbook.Worksheets.Count)

ThisWorkbook.Worksheets(ThisWorkbook.Worksheets.Count).Name =
Result_  ThisWorkbook.Worksheets.Count - 1

Exit Sub

End If

Next wksSheet

End Sub

 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: 07 June 2012 8:28
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Need Help - To rename the sheet

 

Use this:

 

Private Sub Workbook_Open()

Dim wksSheet As Worksheet

For Each wksSheet In Me.Worksheets

If wksSheet.Name Like Result* Then

wksSheet.Name = Result_ 
Val(WorksheetFunction.Substitute(wksSheet.Name, Result_, )) + 1

End If

Next wksSheet

End Sub

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Mangesh Dayne
Sent: 07 June 2012 8:17
To: excel-macros@googlegroups.com; Mangesh Dayne
Subject: $$Excel-Macros$$ Need Help - To rename the sheet

 

Hi Friends,

 

I came across good scenario while working in excel.

I have the worksheet named Result which contain important data and
whenever I open the file I need this Result sheet should become Result_1
automatically, so that there should not be Result sheet available in
workbook. If I open the file again it should be rename Result_2 then
Result_3 like this. In this way I will work on result sheet and all previous
file would become Result_1, Result_2, Result_3, Result_4, etc. 

Please help me by providing suitable code. And also tell me where I have to
put this code.

 

Appreciate your help for this !!!

 

Mangesh.

-- 
FORUM RULES (986+ 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
 
To unsubscribe, send a blank email to
excel-macros+unsubscr...@googlegroups.com

-- 
FORUM RULES (986+ 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

To unsubscribe, send a blank email to excel-macros+unsubscr...@googlegroups.com

Re: FW: $$Excel-Macros$$ Need Help - To rename the sheet

2012-06-07 Thread Mangesh Dayne
Hi Rajan,

Its working fine now.
Thanks again.


Mangesh

On Thu, Jun 7, 2012 at 8:39 PM, Rajan_Verma rajanverma1...@gmail.comwrote:

 I think I misunderstood your question , you can use this macro :

 ** **

 Private Sub Workbook_Open()

 Dim wksSheet As Worksheet

 For Each wksSheet In Me.Worksheets

 If wksSheet.Name = Result Then

 wksSheet.Copy ,
 ThisWorkbook.Worksheets(ThisWorkbook.Worksheets.Count)

 ThisWorkbook.Worksheets(ThisWorkbook.Worksheets.Count).Name =
 Result_  ThisWorkbook.Worksheets.Count - 1

 Exit Sub

 End If

 Next wksSheet

 End Sub

 ** **

 ** **

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

 ** **

 *From:* Rajan_Verma [mailto:rajanverma1...@gmail.com]
 *Sent:* 07 June 2012 8:28
 *To:* 'excel-macros@googlegroups.com'
 *Subject:* RE: $$Excel-Macros$$ Need Help - To rename the sheet

 ** **

 Use this:

 ** **

 Private Sub Workbook_Open()

 Dim wksSheet As Worksheet

 For Each wksSheet In Me.Worksheets

 If wksSheet.Name Like Result* Then

 wksSheet.Name = Result_ 
 Val(WorksheetFunction.Substitute(wksSheet.Name, Result_, )) + 1

 End If

 Next wksSheet

 End Sub

 ** **

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

 ** **

 *From:* excel-macros@googlegroups.com
 [mailto:excel-macros@googlegroups.com] *On Behalf Of *Mangesh Dayne
 *Sent:* 07 June 2012 8:17
 *To:* excel-macros@googlegroups.com; Mangesh Dayne
 *Subject:* $$Excel-Macros$$ Need Help - To rename the sheet

 ** **

 Hi Friends,

 ** **

 I came across good scenario while working in excel.

 I have the worksheet named *Result* which contain important data
 and whenever I open the file I need this Result sheet should become
 Result_1 automatically, so that there should not be *Result* sheet
 available in workbook. If I open the file again it should be rename
 Result_2 then Result_3 like this. In this way I will work on result sheet
 and all previous file would become Result_1, Result_2, Result_3, Result_4,
 etc. 

 Please help me by providing suitable code. And also tell me where I have
 to put this code.

 ** **

 Appreciate your help for this !!!

 ** **

 Mangesh.

 --
 FORUM RULES (986+ 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

 To unsubscribe, send a blank email to
 excel-macros+unsubscr...@googlegroups.com

 --
 FORUM RULES (986+ 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

 To unsubscribe, send a blank email to
 excel-macros+unsubscr...@googlegroups.com


-- 
FORUM RULES (986+ 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.


FW: $$Excel-Macros$$ Rajan Verma - Most helpful Member(May'12)

2012-06-04 Thread Mohammed Muneer
Dear Rajan, 

 

Congratulations..

 

Keep the same stream always...

 

 

 

Regards,

Muneer,

CC

-- 
FORUM RULES (986+ 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

To unsubscribe, send a blank email to excel-macros+unsubscr...@googlegroups.com

Fw: $$Excel-Macros$$ unable to use advance vlookup

2012-05-22 Thread LAKSHMAN PRASAD
To All,
 
 
 
 

- Forwarded Message -
From: Aamir Shahzad aamirshahza...@gmail.com
To: excel-macros@googlegroups.com 
Sent: Wednesday, May 23, 2012 1:42 AM
Subject: Re: $$Excel-Macros$$ unable to use advance vlookup

I don't think so or any other group member can provide solution. 


Regards,


Aamir Shahzad

On Tue, May 22, 2012 at 10:03 AM, LAKSHMAN PRASAD lakshman_...@yahoo.com 
wrote: 
Plz see the attached file






From: Aamir Shahzad aamirshahza...@gmail.comTo: 
excel-macros@googlegroups.com Sent: Monday, May 21, 2012 11:27 PM 
Subject: Re: $$Excel-Macros$$ unable to use advance vlookup
sorry not understand make it clear, lots of expert here can solve your issue. 



Aamir Shahzad

On Mon, May 21, 2012 at 11:13 AM, LAKSHMAN PRASAD lakshman_...@yahoo.com 
wrote: 
Hi Aamir,

Thanks

Is working, that’s what I exactly want to do.But Its better if we avoid extra 
column. I am able to avoid sheet “Subsidiary Ledger Trial Balance” 
Helpingcolumn but unable to avoid sheet “Sheet2” Helping column. Can you ………?
 
=VLOOKUP(A2,Sheet2!$A$2:$C$7493,3,0)
 
=IFERROR(LEFT(B2,FIND(-,B2)-1)SUBSTITUTE(RIGHT(B2,LEN(B2)-FIND( 
,B2)),(2),),B2)
 
=VLOOKUP(IFERROR(LEFT(B2,FIND(-,B2)-1)SUBSTITUTE(RIGHT(B2,LEN(B2)-FIND( 
,B2)),(2),),B2)
,Sheet2!$A$2:$C$7493,3,0)
 
 
Sheet2!$A$2:$C$7493--?
 
 
Thanks  Regards
LAKSHMAN




From: Aamir Shahzad aamirshahza...@gmail.com
To: excel-macros@googlegroups.com 
Sent: Sunday, May 20, 2012 8:33 PM 
Subject: Re: $$Excel-Macros$$ unable to use advance vlookup
As desired by you, see the attached file. 



Aamir Shahzad

On Sun, May 20, 2012 at 5:17 PM, Seraj Alam seraj.ala...@gmail.com wrote: 
Hi,


Please try below formula...




=IFERROR(VLOOKUP(*A2*,Sheet2!$A$2:$B$3272,2,0),)


On Sat, May 19, 2012 at 12:16 PM, LAKSHMAN PRASAD lakshman_...@yahoo.com 
wrote: 
Dear Anil,
I know 

Hi, Anil,
I know that, but as per my condition or requirement, if first five number 
(from left) and first name (in any case upper of lower) should be match.
 subsidary sheet  in A17 is 
10020-16A-BLKC-MR. ANUPAM SARKAR 
 and in sheet2 in A17 is 
10020--BLKC-MR. ANUPAM SARKAR(2) 


 
From: Anil Gawli gawlianil8...@gmail.comTo: excel-macros@googlegroups.com 
Sent: Friday, May 18, 2012 6:22 PM 
Subject: Re: $$Excel-Macros$$ unable to use advance vlookup
subsidary sheet  in A17 is 
10020-16A-BLKC-MR. ANUPAM SARKAR  and in sheet2 in A17 is 
10020--BLKC-MR. ANUPAM SARKAR(2) 
both are not matching that,s why 
Regards,
 Anil Gawli

On Fri, May 18, 2012 at 6:05 PM, LAKSHMAN PRASAD lakshman_...@yahoo.com 
wrote: 
Hi Anil, 

Plz see cell D13 and D17 value or #NA data no coming



From: Anil Gawli gawlianil8...@gmail.com
To: excel-macros@googlegroups.com 
Sent: Friday, May 18, 2012 5:37 PM
Subject: Re: $$Excel-Macros$$ unable to use advance vlookup

Try this see attached file 
On Fri, May 18, 2012 at 4:36 PM, LAKSHMAN PRASAD lakshman_...@yahoo.com 
wrote: 
Dear Expert
I m unable to use advance vlookup, plz see the attached file.
Regards
LAKSHMAN
-- 
FORUM RULES (986+ 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
-- Thanks  Regards,Gawli Anil NarayanSoftware Developer,Abacus Software 
Services Pvt Ltd-- FORUM RULES (986+ 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 (986+ 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 

Re: FW: $$Excel-Macros$$ Find the number missing in other cols

2012-05-20 Thread Aamir Shahzad
You also can use:

=IF(SUMPRODUCT(--($A$2:$C$11=E2)*($E$2:$E$11))1,,Not Present)

Regards,

Aamir Shahzad

On Sun, May 20, 2012 at 8:46 AM, Mohammed Muneer mmun...@ccc.com.qa wrote:

  HI, Rajan its working that’s what I exactly want to do.



 Thanx Buddy….







 Regards,

 Muneer,

 CC….
  --
 FORUM RULES (986+ 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


 -- Forwarded message --
 From: Rajan_Verma rajanverma1...@gmail.com
 To: excel-macros@googlegroups.com
 Cc:
 Date: Sat, 19 May 2012 16:35:27 +0300
 Subject: RE: $$Excel-Macros$$ Find the number missing in other cols



 Put this in F2 and Drag



 =IF(COUNTIF($A$2:$C$11,E2),,Not Present)





 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*



 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *dguillett1
 *Sent:* 19 May 2012 6:42
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Find the number missing in other cols



 You need to make this clear



 Don Guillett
 Microsoft MVP Excel
 SalesAid Software
 dguille...@gmail.com



 *From:* Mohammed Muneer mmun...@ccc.com.qa

 *Sent:* Saturday, May 19, 2012 7:32 AM

 *To:* excel-macros@googlegroups.com

 *Subject:* $$Excel-Macros$$ Find the number missing in other cols



 Dear friends,



 I have a set of cols called A B C  D can please help me to solve the
 issue..



 Note: please check the attached copy for further understanding.







 Regards,

 Muneer,

 CC..

 --
 FORUM RULES (986+ 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 (986+ 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 (986+ 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




-- 

Regards,
Aamir Shahzad

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

1) Use 

Re: FW: $$Excel-Macros$$ Find the number missing in other cols

2012-05-20 Thread Aamir Shahzad
for what Rajan?

On Sun, May 20, 2012 at 1:29 PM, Rajan_Verma rajanverma1...@gmail.comwrote:

 Use the attached Sheet

 ** **

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Aamir Shahzad
 *Sent:* 20 May 2012 1:41
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: FW: $$Excel-Macros$$ Find the number missing in other cols*
 ***

 ** **

 You also can use:

 ** **

 =IF(SUMPRODUCT(--($A$2:$C$11=E2)*($E$2:$E$11))1,,Not Present)

 ** **

 Regards,

 ** **

 Aamir Shahzad

 ** **

 On Sun, May 20, 2012 at 8:46 AM, Mohammed Muneer mmun...@ccc.com.qa
 wrote:

 HI, Rajan its working that’s what I exactly want to do.

  

 Thanx Buddy….

  

  

  

 Regards,

 Muneer,

 CC….

 --
 FORUM RULES (986+ 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



 -- Forwarded message --
 From: Rajan_Verma rajanverma1...@gmail.com
 To: excel-macros@googlegroups.com
 Cc:
 Date: Sat, 19 May 2012 16:35:27 +0300
 Subject: RE: $$Excel-Macros$$ Find the number missing in other cols

  

 Put this in F2 and Drag

  

 =IF(COUNTIF($A$2:$C$11,E2),,Not Present)

  

  

 * *

 *Regards*

 *Rajan verma*

 *+91 7838100659 [IM-Gtalk]*

  

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *dguillett1
 *Sent:* 19 May 2012 6:42
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Find the number missing in other cols

  

 You need to make this clear

  

 Don Guillett
 Microsoft MVP Excel
 SalesAid Software
 dguille...@gmail.com

  

 *From:* Mohammed Muneer mmun...@ccc.com.qa 

 *Sent:* Saturday, May 19, 2012 7:32 AM

 *To:* excel-macros@googlegroups.com 

 *Subject:* $$Excel-Macros$$ Find the number missing in other cols

  

 Dear friends,

  

 I have a set of cols called A B C  D can please help me to solve the
 issue..

  

 Note: please check the attached copy for further understanding.

  

  

  

 Regards,

 Muneer,

 CC..

 --
 FORUM RULES (986+ 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 (986+ 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 (986+ 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

RE: FW: $$Excel-Macros$$ Find the number missing in other cols

2012-05-20 Thread Rajan_Verma
Ignore that please

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Aamir Shahzad
Sent: 20 May 2012 2:09
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Find the number missing in other cols

 

for what Rajan?

On Sun, May 20, 2012 at 1:29 PM, Rajan_Verma rajanverma1...@gmail.com
wrote:

Use the attached Sheet

 

 

Regards

Rajan verma

+91 7838100659 tel:%2B91%207838100659  [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Aamir Shahzad
Sent: 20 May 2012 1:41
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ Find the number missing in other cols

 

You also can use:

 

=IF(SUMPRODUCT(--($A$2:$C$11=E2)*($E$2:$E$11))1,,Not Present)

 

Regards,

 

Aamir Shahzad

 

On Sun, May 20, 2012 at 8:46 AM, Mohammed Muneer mmun...@ccc.com.qa wrote:

HI, Rajan its working that's what I exactly want to do.

 

Thanx Buddy..

 

 

 

Regards,

Muneer,

CC..

-- 
FORUM RULES (986+ 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



-- Forwarded message --
From: Rajan_Verma rajanverma1...@gmail.com
To: excel-macros@googlegroups.com
Cc: 
Date: Sat, 19 May 2012 16:35:27 +0300
Subject: RE: $$Excel-Macros$$ Find the number missing in other cols

 

Put this in F2 and Drag

 

=IF(COUNTIF($A$2:$C$11,E2),,Not Present)

 

 

 

Regards

Rajan verma

+91 7838100659 tel:%2B91%207838100659  [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of dguillett1
Sent: 19 May 2012 6:42
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Find the number missing in other cols

 

You need to make this clear

 

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguille...@gmail.com

 

From: Mohammed Muneer mailto:mmun...@ccc.com.qa  

Sent: Saturday, May 19, 2012 7:32 AM

To: excel-macros@googlegroups.com 

Subject: $$Excel-Macros$$ Find the number missing in other cols

 

Dear friends,

 

I have a set of cols called A B C  D can please help me to solve the
issue..

 

Note: please check the attached copy for further understanding.

 

 

 

Regards,

Muneer,

CC..

-- 
FORUM RULES (986+ 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 (986+ 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 (986+ 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

FW: $$Excel-Macros$$ Find the number missing in other cols

2012-05-19 Thread Mohammed Muneer
HI, Rajan its working that's what I exactly want to do.

 

Thanx Buddy

 

 

 

Regards,

Muneer,

CC

-- 
FORUM RULES (986+ 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
---BeginMessage---
 

Put this in F2 and Drag

 

=IF(COUNTIF($A$2:$C$11,E2),,Not Present)

 

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of dguillett1
Sent: 19 May 2012 6:42
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Find the number missing in other cols

 

You need to make this clear

 

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguille...@gmail.com

 

From: Mohammed Muneer mailto:mmun...@ccc.com.qa  

Sent: Saturday, May 19, 2012 7:32 AM

To: excel-macros@googlegroups.com 

Subject: $$Excel-Macros$$ Find the number missing in other cols

 

Dear friends,

 

I have a set of cols called A B C  D can please help me to solve the issue..

 

Note: please check the attached copy for further understanding.

 

 

 

Regards,

Muneer,

CC..

-- 
FORUM RULES (986+ 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 (986+ 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 (986+ 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

---End Message---


FW: $$Excel-Macros$$ Need help

2012-04-20 Thread Rajan_Verma
Group is not allowing large size Files. So I am sending the  Excel file and
Access DB on your personal mail. J

 

Rajan

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: Apr/Fri/2012 06:55
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Need help

 

Hi,

In shared Workbook. Macros will not work.

 

I was create a login Logout procedure before 2-3 Month, from this you can
take idea how to make an application which can be used by multiple users.

 

Steps :

1)Save the access db in Shared Location 

2) Replace the db path in Codes

3). Spread the excel sheet to users

 

All entries will be store in access db.

 

Rajan.   

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Dileep Kumar
Sent: Apr/Fri/2012 03:13
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Need help

 

Try Using Workbook Sharing.. in Maped Network Drive...

On Fri, Apr 20, 2012 at 12:54 PM, sushil kumar sushilck.sha...@gmail.com
wrote:

Hello All Expert,Can anyone give me any template or suggestion 

 

On Fri, Apr 20, 2012 at 10:41 AM, sushil kumar sushilck.sha...@gmail.com
wrote:

I want to multiple user can use do the entry in excel sheet and that data
save into central access database

 

Please help any one this is very urgent for me

 

 

-- 
FORUM RULES (986+ 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 (986+ 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




-- 
Regards,
Dileep Kumar Kaza

Duty is God Work is Worship

-- 
FORUM RULES (986+ 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 (986+ 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: FW: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 25 Messages in 15 Topics

2012-03-28 Thread NOORAIN ANSARI
Dear Williams,

Pls post query

On Thu, Mar 22, 2012 at 10:19 AM, Mike Williams mwilli...@marinaauto.comwrote:

 **


 --
 FORUM RULES (986+ 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




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

-- 
FORUM RULES (986+ 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


FW: $$Excel-Macros$$ Macro to sort excel data email to party

2012-03-28 Thread Amit Desai (MERU)
Can anyone please help me on this?

Best Regards,
Amit

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Amit Desai (MERU)
Sent: 25 March 2012 18:33
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Macro to sort excel data  email to party

Dear All,

I need your expert help...

Please find attached sample file. Following things are expected to be done;


1)  In first sheet there are data that needs to be sorted work shop wise.

2)  In the second sheet email ids are mentioned where we need to send those 
sorted data per workshop.

Best Regards,
Amit


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.
--
FORUM RULES (986+ 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


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.

-- 
FORUM RULES (986+ 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


RNM history for web.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


FW: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 25 Messages in 15 Topics

2012-03-26 Thread Mike Williams
 

-- 
FORUM RULES (986+ 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


FW: $$Excel-Macros$$ macro to sort excel data email to party

2012-02-21 Thread Amit Desai (MERU)
Dear All,

Please find attached sample file. Following things needs to be done;


1)  In first sheet there are data that needs to be sorted work shop wise.

2)  In the second sheet email ids are mentioned where we need to send those 
sorted data per workshop.

Please let me know if we have macro for that.

Best Regards,
Amit
From: Amit Desai (MERU) [mailto:amit.de...@merucabs.com]
Sent: 20 February 2012 21:31
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ macro tort excel data  email to party

Dear All,

Please find attached sample file. In first sheet there are data that needs to 
be sorted work shop wise. In the second sheet email ids are mentioned where we 
need to send those sorted data per workshop.

Please let me know if we have macro for that.

Best Regards,
Amit

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Maries
Sent: 20 February 2012 21:05
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ macro for excel data to email

Check these links...

http://www.excelvbamacros.com/2010/07/vba-code-to-send-email-through-excel.html

http://www.excelvbamacros.com/2011/06/send-emails-and-attach-filtered-data.html

On Mon, Feb 20, 2012 at 7:30 PM, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
Dear Friends,

Is there any macro for sending excel data to emails of different vendors?

Best Regards,
Amit



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.
--
FORUM RULES (986+ 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.commailto:excel-macros@googlegroups.com

--
FORUM RULES (986+ 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


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 

FW: $$Excel-Macros$$ How to find out rightmost space in a cell of text string with many spaces.

2012-02-17 Thread Rajan_Verma
 

From right.

=Len(A1)- MAX(--(MID(A1,ROW(INDIRECT(1:LEN(A1))),1)=
)*ROW(INDIRECT(1:LEN(A1+1 with cse

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: Feb/Fri/2012 07:35
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ How to find out rightmost space in a cell of
text string with many spaces.

 

Try this :

 

=MAX(--(MID(A1,ROW(INDIRECT(1:LEN(A1))),1)=
)*ROW(INDIRECT(1:LEN(A1 with CSE

 

Rajan

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of dguillett1
Sent: Feb/Fri/2012 06:48
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ How to find out rightmost space in a cell of
text string with many spaces.

 

'=LEN(A1)-SEARCH(@,SUBSTITUTE(A1, ,@,LEN(A1)-LEN(SUBSTITUTE(A1,
,+1

 

Don Guillett
SalesAid Software
dguille...@gmail.com

 

From: Waseem Saifi mailto:waseemsa...@gmail.com  

Sent: Friday, February 17, 2012 4:53 AM

To: excel-macros@googlegroups.com 

Subject: $$Excel-Macros$$ How to find out rightmost space in a cell of text
string with many spaces.

 

Dear All, I want to know that in Excel, in a cell contains a text string,
which has many spaces. it is possible that we can find out the leftmost
space. But How can find out righmost space in a long text string with many
spaces. 

 

Like- the quick brown fox jumps. in this string I want to know position of
space before jumps. which is 6.

 

thanx in advance.

 

-- 
FORUM RULES (986+ 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 (986+ 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 (986+ 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: FW: $$Excel-Macros$$ How to find out rightmost space in a cell of text string with many spaces.

2012-02-17 Thread Kris

Rajan,

The formula you posted would give 1, if there is no word in the cell and 
secondly if there is only one word, the result would be 1 + length of the 
word, which is incorrect.

Kris

-- 
FORUM RULES (986+ 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: FW: $$Excel-Macros$$ How to find out rightmost space in a cell of text string with many spaces.

2012-02-17 Thread Rajan_Verma
Ah.. thanks for correction..

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Kris
Sent: Feb/Fri/2012 08:48
To: excel-macros@googlegroups.com
Subject: Re: FW: $$Excel-Macros$$ How to find out rightmost space in a cell
of text string with many spaces.

 

 

Rajan,

 

The formula you posted would give 1, if there is no word in the cell and
secondly if there is only one word, the result would be 1 + length of the
word, which is incorrect.

 

Kris

-- 
FORUM RULES (986+ 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 (986+ 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


FW: $$Excel-Macros$$ reqment of greater than formula

2012-01-31 Thread Rajan_Verma
Please ignore previous

 

Try this With CSE

=LARGE(--(NOT(ISERROR(E3:W3)))*IFERROR(E3:W3,0),1)

 

Rajan

 

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: Jan/Tue/2012 07:07
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ reqment of greater than formula

 

Try with CSE

 

=LARGE(SUMPRODUCT(--(NOT(ISERROR(E5:X5)))*IFERROR(E5:$X$5,0)),1)

 

Rajann.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of anil kumar
Sent: Jan/Tue/2012 05:02
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ reqment of greater than formula

 

sir,

 

max is work but large is not work. sir i attahe a file in which i have to
remove error.

 

i hope u guide me

 

 

 

anil

-- 
FORUM RULES (986+ 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 (986+ 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: FW: $$Excel-Macros$$ cashflow statement

2012-01-04 Thread chandra sekaran
Dear sir,

could you plese provide soulution sir,

Regards
chandru






On Tue, Jan 3, 2012 at 8:24 PM, chandra sekaran duraichan...@gmail.comwrote:

 Dear Rajan,

 if i select Month  july   only july data will come  but  all data comes
 output sheet  after that i little bit change  from date , To date  it is
 working but  same  i select  it is not coming out put

 one more think  Rajan   i need only  From Date ,  To Dateif possible
 plese.


 Thanks

 Regards
 durai.chandrasekaran.(Chandru)




 On Tue, Jan 3, 2012 at 8:17 PM, Rajan_Verma rajanverma1...@gmail.comwrote:

  Is it not working??

 ** **

 *From:* Rajan_Verma [mailto:rajanverma1...@gmail.com]
 *Sent:* Dec/Thu/2011 08:38

 *To:* excel-macros@googlegroups.com
 *Subject:* RE: $$Excel-Macros$$ cashflow statement

   ** **

 See the attached file.. select the month and year from Drop down you will
 get what you need J

 ** **

 ** **

 *From:* Rajan_Verma [mailto:rajanverma1...@gmail.com]
 *Sent:* Dec/Wed/2011 07:10
 *To:* 'excel-macros@googlegroups.com'
 *Subject:* RE: $$Excel-Macros$$ cashflow statement

 ** **

 See the attached Sheet, Press Create Cash Flow Button..

 ** **

 Sub MakeItAutomatic()

 

 Dim rngRowData  As Range

 Dim rngCell As Range

 Dim wksOutPut   As Worksheet

 Set wksOutPut = ThisWorkbook.Worksheets(Output)

 

 Set rngRowData = Range(rngRowData).CurrentRegion

 rngRowData.AutoFilter Field:=2, Criteria1:=Collection Journal**
 **

 Set rngRowData = rngRowData.SpecialCells(xlCellTypeVisible)

 Set rngRowData = Intersect(rngRowData, rngRowData.Offset(1))

 With Range(rngCollStart)

 .Resize(Range(rngCollStart).CurrentRegion.Rows.Count,
 6).ClearContents

 .Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(3).Value

 .Offset(, 1).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(1).Value

 .Offset(, 2).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(7).Value

 .Offset(, 3).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(5).Value

 .Offset(, 4).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(6).Value

 .Offset(, 5).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(8).Value

 End With

 rngRowData.AutoFilter

 

 Set rngRowData = Range(rngRowData).CurrentRegion

 rngRowData.AutoFilter Field:=2, Criteria1:=Fund Transfer Voucher
 

 Set rngRowData = rngRowData.SpecialCells(xlCellTypeVisible)

 Set rngRowData = Intersect(rngRowData, rngRowData.Offset(1))

 With Range(rngFundStart)

 .Resize(Range(rngCollStart).CurrentRegion.Rows.Count,
 6).ClearContents

 .Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(3).Value

 .Offset(, 1).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(1).Value

 .Offset(, 2).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(7).Value

 .Offset(, 3).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(5).Value

 .Offset(, 4).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(6).Value

 .Offset(, 5).Resize(rngRowData.Rows.Count - 1, 1).Value =
 rngRowData.Columns(8).Value

 End With

 rngRowData.AutoFilter


 wksOutPut.Cells(wksOutPut.Cells(Range(rngCollStart).CurrentRegion.Rows.Count,
 1).Row + 7, 5).Value = _

 Evaluate(=Sum(  wksOutPut.Cells(8,
 5).Resize(wksOutPut.Cells(wksOutPut.Cells(8, 5).End(xlDown).Row,
 5).Row).Address  ))

 

 
 wksOutPut.Cells(wksOutPut.Cells(Range(rngCollStart).CurrentRegion.Rows.Count,
 1).Row + 7, 11).Value = _

 Evaluate(=Sum(  wksOutPut.Cells(8,
 11).Resize(wksOutPut.Cells(wksOutPut.Cells(8, 11).End(xlDown).Row,
 11).Row).Address  ))

 ** **

 

 

 End Sub

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *chandra sekaran
 *Sent:* Dec/Wed/2011 10:19
 *To:* excel-macros@googlegroups.com
 *Subject:* $$Excel-Macros$$ cashflow statement

 ** **

 Dear all 

  

 here with attached  Cashflow xls file  it containing   Data Sheet
 and OUTPUT sheet   i am doing manually daily basis   How do it
 automatticaly come to out put sheet  please help sir, 

  

 Regards

 chandru 

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

FW: $$Excel-Macros$$ Decimals upto beyond 20

2011-11-23 Thread utpal samui
Dear Mr. Sastry,

Pls. check the attachment for your query..

__
Thanks  Regards,
Utpal Samui
_
The earth is enjoyed by heroes-this is the unfailing truth. Be a hero.
Always say, I have no fear.
- Swami Vivekanand

---

-Original Message-
From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Sastry
Sent: Wednesday, November 23, 2011 1:35 PM
To: MS EXCEL AND VBA MACROS
Subject: $$Excel-Macros$$ Decimals upto  beyond 20

Dear All,

We have a situation wherein the numbers are (should be) accurate till the
20th decimal. Unfortunately the MS Excel 2007 that we use is not compatible
with this feature. It shows only till 14th - 16th. Even if we input a number
that long, it zeroes it beyond the 14th - 16th; not to talk of the product
based on that.

Any ideas as to how to crack it?

regards,
Sastry

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



-- 
Regards,
Utpal Samui
Pathankot, Punjab

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


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


Fwd: Fw: $$Excel-Macros$$ Help required

2011-10-13 Thread Mr Excellent
Hi Group,

Please help

Thanks
Prasad.

-- Forwarded message --
From: suryaprasad...@gmail.com
Date: Thu, Oct 13, 2011 at 10:43 AM
Subject: Fw: $$Excel-Macros$$ Help required
To: excel-macros@googlegroups.com


**Hi Guys can anyone help me on this please

Thanks
Prasad

Sent from BlackBerry® on Airtel
--
*From: *Mr Excellent suryaprasad...@gmail.com
*Sender: *excel-macros@googlegroups.com
*Date: *Thu, 13 Oct 2011 04:52:12 +0530
*To: *excel-macros@googlegroups.com
*ReplyTo: *excel-macros@googlegroups.com
*Subject: *$$Excel-Macros$$ Help required

Hi Group,

Need a small help, i have a code which runs on the data and seggregates the
details as per the Country, but additional to that i require the Country
name should come on the top of each rows which are divided by country in the
first column and the heading should be applicable to all the seggregated
rows as per the country and should be bold and underlined.

The example data is given in the first TAB Tes
My Code example data is given in the second TAB My Code
Actual required data is given in third TAB  Actual Required

Please help

Thanks
Prasad.


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


Test.xlsm
Description: Binary data


Re: Fw: $$Excel-Macros$$ Help required

2011-10-13 Thread rajan verma
Try this :
its not a Good Macro but can Solve your Query :
Sub bifurCateData()

Dim rngHeading  As Range
Dim RngData As Range
Dim rngCell As Range
Dim strCountryname  As String
Dim intLastrow  As Integer
With Range(A1)
Set RngData = Intersect(.CurrentRegion, .CurrentRegion.Offset(1))
End With
Set rngHeading = Range(A1).Resize(1, Range(A1).End(xlToRight).Column
+ 1)
RngData.Sort Key1:=RngData.Cells(, RngData.Columns.Count)

For IntI = ActiveSheet.UsedRange.Rows.Count To 3 Step -1
If Range(H  IntI).Value  Range(H  IntI - 1).Value Then
Range(H  IntI).Resize(3, 1).EntireRow.Insert
End If
Next
intLastrow = ActiveSheet.UsedRange.Rows.Count
Range(A1).Activate
lable1:
ActiveCell.End(xlDown).Cells.Offset(2, 0).Select
If ActiveCell.Row = intLastrow Then
Range(A1).Select
Exit Sub
End If
ActiveCell.Value = ActiveCell.Offset(2, 7).Value
ActiveCell.Offset(1, 0).Resize(1, 8).Value = rngHeading.Value
GoTo lable1:
End Sub


On Thu, Oct 13, 2011 at 4:21 PM, Mr Excellent suryaprasad...@gmail.comwrote:

 Hi Group,

 Please help

 Thanks
 Prasad.

   -- Forwarded message --
 From: suryaprasad...@gmail.com
 Date: Thu, Oct 13, 2011 at 10:43 AM
 Subject: Fw: $$Excel-Macros$$ Help required
 To: excel-macros@googlegroups.com


 **Hi Guys can anyone help me on this please

 Thanks
 Prasad

 Sent from BlackBerry® on Airtel
 --
 *From: *Mr Excellent suryaprasad...@gmail.com
 *Sender: *excel-macros@googlegroups.com
 *Date: *Thu, 13 Oct 2011 04:52:12 +0530
 *To: *excel-macros@googlegroups.com
 *ReplyTo: *excel-macros@googlegroups.com
 *Subject: *$$Excel-Macros$$ Help required

 Hi Group,

 Need a small help, i have a code which runs on the data and seggregates the
 details as per the Country, but additional to that i require the Country
 name should come on the top of each rows which are divided by country in the
 first column and the heading should be applicable to all the seggregated
 rows as per the country and should be bold and underlined.

 The example data is given in the first TAB Tes
 My Code example data is given in the second TAB My Code
 Actual required data is given in third TAB  Actual Required

 Please help

 Thanks
 Prasad.


 --

 --
 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
Rajan verma
+91 9158998701

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


Fw: $$Excel-Macros$$ Help required

2011-10-12 Thread suryaprasad . bv
Hi Guys can anyone help me on this please

Thanks
Prasad

Sent from BlackBerry® on Airtel

-Original Message-
From: Mr Excellent suryaprasad...@gmail.com
Sender: excel-macros@googlegroups.com
Date: Thu, 13 Oct 2011 04:52:12 
To: excel-macros@googlegroups.com
Reply-To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Help required

Hi Group,

Need a small help, i have a code which runs on the data and seggregates the
details as per the Country, but additional to that i require the Country
name should come on the top of each rows which are divided by country in the
first column and the heading should be applicable to all the seggregated
rows as per the country and should be bold and underlined.

The example data is given in the first TAB Tes
My Code example data is given in the second TAB My Code
Actual required data is given in third TAB  Actual Required

Please help

Thanks
Prasad.

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


Test.xlsm
Description: Binary data


Fw: $$Excel-Macros$$ Need a help in Combo and Check Boxes

2011-09-05 Thread suryaprasad . bv
Hi all,

Can anyone help me on this??

Regards
Prasad

Sent from BlackBerry® on Airtel

-Original Message-
From: Mr Excellent suryaprasad...@gmail.com
Date: Mon, 5 Sep 2011 17:10:47 
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Need a help in Combo and Check Boxes

Hi Noorain,

This helped me a lot but there is a single case in the code, how to add many
cases if the select any other country and opt for other check boxes, please
refer to the attachment

Please help

Thanks
Prasad.

On Mon, Sep 5, 2011 at 8:34 AM, NOORAIN ANSARI noorain.ans...@gmail.comwrote:

 Dear Surya,

 Please see attached sheet if it help..

   On Mon, Sep 5, 2011 at 7:06 AM, Mr Excellent 
 suryaprasad...@gmail.comwrote:

 Hi Group,

 Need  a small help, i have a combo box in the form and when i click on
 particular name INDIA one of the list box which says  Indian currency to
 be updated  should be enabled and the other list box should be disabled and
 vice versa as well, please help.

 Thanks,
 Prasad.

 --

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




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

 --

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


Currency(1).xlsm
Description: Binary data


Fwd: Fw: $$Excel-Macros$$ Need a help in Combo and Check Boxes

2011-09-05 Thread NOORAIN ANSARI
Dear Surya,

Please see attached sheet if it help to u..

-- Forwarded message --
From: suryaprasad...@gmail.com
Date: Mon, Sep 5, 2011 at 11:15 PM
Subject: Fw: $$Excel-Macros$$ Need a help in Combo and Check Boxes
To: excel-macros@googlegroups.com


**Hi all,

Can anyone help me on this??

Regards

Prasad

Sent from BlackBerry® on Airtel
--
*From: *Mr Excellent suryaprasad...@gmail.com
*Date: *Mon, 5 Sep 2011 17:10:47 +0530
*To: *excel-macros@googlegroups.com
*Subject: *Re: $$Excel-Macros$$ Need a help in Combo and Check Boxes

Hi Noorain,

This helped me a lot but there is a single case in the code, how to add many
cases if the select any other country and opt for other check boxes, please
refer to the attachment

Please help

Thanks
Prasad.

On Mon, Sep 5, 2011 at 8:34 AM, NOORAIN ANSARI noorain.ans...@gmail.comwrote:

 Dear Surya,

 Please see attached sheet if it help..

   On Mon, Sep 5, 2011 at 7:06 AM, Mr Excellent 
 suryaprasad...@gmail.comwrote:

 Hi Group,

 Need  a small help, i have a combo box in the form and when i click on
 particular name INDIA one of the list box which says  Indian currency to
 be updated  should be enabled and the other list box should be disabled and
 vice versa as well, please help.

 Thanks,
 Prasad.

 --

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




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

 --

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



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

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


Currency(Updated).xlsm
Description: Binary data


Re: Fw: $$Excel-Macros$$ Need a help in Combo and Check Boxes

2011-09-05 Thread Mr Excellent
Hi Noorain,

Thank you for this , one doubt here can we Have a faded or shaded check box
instead if hiding them?

Thanks
Prasad.

On Tue, Sep 6, 2011 at 12:07 AM, NOORAIN ANSARI noorain.ans...@gmail.comwrote:

 Dear Surya,

 Please see attached sheet if it help to u..

   -- Forwarded message --
 From: suryaprasad...@gmail.com
 Date: Mon, Sep 5, 2011 at 11:15 PM
 Subject: Fw: $$Excel-Macros$$ Need a help in Combo and Check Boxes
 To: excel-macros@googlegroups.com


 **Hi all,

 Can anyone help me on this??

 Regards

 Prasad

 Sent from BlackBerry® on Airtel
 --
 *From: *Mr Excellent suryaprasad...@gmail.com
 *Date: *Mon, 5 Sep 2011 17:10:47 +0530
 *To: *excel-macros@googlegroups.com
 *Subject: *Re: $$Excel-Macros$$ Need a help in Combo and Check Boxes

 Hi Noorain,

 This helped me a lot but there is a single case in the code, how to add
 many cases if the select any other country and opt for other check boxes,
 please refer to the attachment

 Please help

 Thanks
 Prasad.

 On Mon, Sep 5, 2011 at 8:34 AM, NOORAIN ANSARI 
 noorain.ans...@gmail.comwrote:

 Dear Surya,

 Please see attached sheet if it help..

   On Mon, Sep 5, 2011 at 7:06 AM, Mr Excellent 
 suryaprasad...@gmail.comwrote:

 Hi Group,

 Need  a small help, i have a combo box in the form and when i click on
 particular name INDIA one of the list box which says  Indian currency to
 be updated  should be enabled and the other list box should be disabled and
 vice versa as well, please help.

 Thanks,
 Prasad.

 --

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




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

 --

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



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

 --

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


FW: $$Excel-Macros$$ date in range

2011-09-04 Thread SAJID MEMON


 




dear danial, 
as per your code its not working, please give me suggesstion as per my 
attachement file.
 
sajid memon
 
 
 
 
 
From: dcolarde...@free.fr
To: excel-macros@googlegroups.com
Subject: RE: $$Excel-Macros$$ date in range
Date: Sat, 3 Sep 2011 19:39:41 +0200






Paste the below macro into the sheet module :
 
Option Explicit
 
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As 
Boolean)
If Intersect(Target, [G11:G23]) Is Nothing Then Exit Sub
Cancel = True
frmCalendar.Show
End Sub
 
Daniel
 


De : excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] De la 
part de SAJID MEMON
Envoyé : samedi 3 septembre 2011 19:24
À : Excel Group
Objet : $$Excel-Macros$$ date in range
 

Dear Experts,
 
 
I have attached my part of project file. plz see it and give me solution.
 
regards
 
sajid memon
-- 
--
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
  

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


FW: $$Excel-Macros$$ Option for countifs Sumifs formula in MS Excel 2003

2011-09-02 Thread Amit Desai (MERU)
Dear Rajan,

Thanks for this..but I do want to edit the attached formula, please explain the 
same how to do ?
Also I want to have the formula with criteria of either or (in countifs we used 
to add 2 count ifs)

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Rajan_Verma
Sent: Wednesday, August 31, 2011 11:04 AM
To: excel-macros@googlegroups.com
Subject: RE: $$Excel-Macros$$ Option for countifs  Sumifs formula in MS Excel 
2003

See the attached



From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Venkat CV
Sent: Wednesday, August 31, 2011 7:33 AM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Option for countifs  Sumifs formula in MS Excel 
2003

Hi Amit

See below link for Sumifs in 2003
http://chandoo.org/forums/topic/converting-sumifs-to-excel-2003

--
Best Regards,
Venkat
Chennai


On Tue, Aug 30, 2011 at 9:54 PM, Amit Desai (MERU) 
amit.de...@merucabs.commailto:amit.de...@merucabs.com wrote:
Dear All,

Do we have any option for countifs  Sumifs formula in MS Excel 2003?

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.
--
--
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.commailto: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
--
--
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


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.

-- 

Re: FW: $$Excel-Macros$$ Option for countifs Sumifs formula in MS Excel 2003

2011-09-02 Thread NOORAIN ANSARI
 Dear Amit,

You can use Sumproduct instead of Countifs for Multiple Criteria..

See example..

=*SUMPRODUCT(--(A2:A30=F24)*(B2:B30=G24)*(C2:C30=H24))*

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

On Fri, Sep 2, 2011 at 3:21 PM, Amit Desai (MERU)
amit.de...@merucabs.comwrote:

  Dear Rajan,

 ** **

 Thanks for this..but I do want to edit the attached formula, please explain
 the same how to do ?

 Also I want to have the formula with criteria of either or (in countifs we
 used to add 2 count ifs)

 ** **

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Rajan_Verma
 *Sent:* Wednesday, August 31, 2011 11:04 AM

 *To:* excel-macros@googlegroups.com
 *Subject:* RE: $$Excel-Macros$$ Option for countifs  Sumifs formula in MS
 Excel 2003

   ** **

 *See the attached *

 * *

 * *

 * *

 *From:* excel-macros@googlegroups.com [mailto:
 excel-macros@googlegroups.com] *On Behalf Of *Venkat CV
 *Sent:* Wednesday, August 31, 2011 7:33 AM
 *To:* excel-macros@googlegroups.com
 *Subject:* Re: $$Excel-Macros$$ Option for countifs  Sumifs formula in MS
 Excel 2003

 ** **

 Hi Amit

 ** **

 See below link for Sumifs in 2003

 http://chandoo.org/forums/topic/converting-sumifs-to-excel-2003 

 ** **

 -- 

 *Best Regards,*

 *Venkat *

 *Chennai*

 ** **

 ** **

 On Tue, Aug 30, 2011 at 9:54 PM, Amit Desai (MERU) 
 amit.de...@merucabs.com wrote:

 Dear All,

  

 Do we have any option for countifs  Sumifs formula in MS Excel 2003?

  

 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.

 --

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

 --

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

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

FW: $$Excel-Macros$$ Book2.xlsx

2011-08-31 Thread Sudhir Kumar

Data Table

 

 

 

 

 

 

 

 


Date

Party Name

Amount

 

 

Hi can u suggest here for Sumproduct formula


8/30/2011

Anuvanshika -Kanpur

3

 

 

 

 

 

 


8/30/2011

Kelvin Elec.

49649

 

 

Name of Parties

Date

Amt.

 


8/30/2011

Anand Agencies

15

 

 

Kelvin Elec.

30-Aug

49649

 


8/30/2011

Kelvin Elec.

1

 

 

Kelvin Elec.

30-Aug

1

 


8/30/2011

Vijeta Elec-BR-DDN

3

 

 

 

 

 

 

 

 

HI

 

I WANT RESULT IN ABOVE TYPE(HILIGHTED CELLS)

 

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Mahesh parab
Sent: Wednesday, August 31, 2011 4:38 AM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Book2.xlsx

 

Hi

 

Try

 

 =SUMPRODUCT((A3:A7=G5)*(B3:B7=F5)*(C3:C7))  OR

 =SUMIFS(C3:C7,A3:A7,G5,B3:B7,F5)  

On Wed, Aug 31, 2011 at 5:05 PM, Sundarvelan N nsund...@gmail.com wrote:

Please refere the attached file.


 

Thanks

N.Sundarvelan 

9600160150





On Thu, Sep 1, 2011 at 5:00 AM, Sudhir Kumar sudhir.ku...@lazerindia.com
wrote:

Dear All

 

Please suggest a formula of Sumproducts

 

Thanking u

-- 

--
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
http://www.excel-macros.blogspot.com/ 
4. Learn VBA Macros at http://www.quickvba.blogspot.com
http://www.quickvba.blogspot.com/ 
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
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

 

-- 

--
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: FW: $$Excel-Macros$$ Workbooks Consolidation Macro

2011-08-17 Thread Satish Bandaru
hi experts
please help me.plz find the atachment

thanks in advance

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


lock cells.xls
Description: MS-Excel spreadsheet


Re: FW: $$Excel-Macros$$ Update Data source range converting 0 to -

2011-08-17 Thread XLS S
Hey amit,

can you share the example sheet.

On Wed, Aug 17, 2011 at 11:00 AM, Amit Desai (MERU)
amit.de...@merucabs.com wrote:
 Thanks, but this did not worked..I have updated few data in sheet1, after
 pressing cltr+shift+S, selected the entire range, than given the name of
 sheets where we have Pivots.

 Best Regards,
 Amit Desai

 Assistant Manager, Fleet MIS (Corporate)
 Desk No.: 022 40520129
 Cell No.: 9867232534

 -Original Message-
 From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
 On Behalf Of XLS S
 Sent: Wednesday, August 17, 2011 1:56 AM
 To: excel-macros@googlegroups.com
 Subject: Re: $$Excel-Macros$$ Update Data source range  converting 0 to
 -

 please ignore previous attachment ...just press cltr+shift+S then
 select new range for pivot... then ok...then enter sheet
 name



 On Wed, Aug 17, 2011 at 1:50 AM, XLS S xlst...@gmail.com wrote:
 hey Amit,

 try this code.

 Sub ChangePivotRange()
 On Error GoTo Err:
 Dim Pt As PivotTable
 Dim rng As Range
 Set rng = Application.InputBox(Please Select a range for Pivot
 Table!, XLS S Power, Selection.Address, , , , , 8) wsa =
 InputBox(Please Enter Sheet Name, XLS S Power) For Each Pt In
 Sheets(wsa).PivotTables Pt.PivotTableWizard SourceType:=xlDatabase,
 SourceData:=rng Next
 Err:
 End Sub



 On Tue, Aug 16, 2011 at 4:30 PM, Amit Desai (MERU)
 amit.de...@merucabs.com wrote:
 Dear All,



 Still waiting a solution for below issue.



 I have created several pivot tables  want to update the data source
 range for all the pivot tables all together. (We do have option as
 refresh all for applying the preset pivot criteria in all pivots.)

 Best Regards,

 Amit Desai



 Assistant Manager, Fleet MIS (Corporate)

 Desk No.: 022 40520129

 Cell No.: 9867232534



 From: Amit Desai (MERU) [mailto:amit.de...@merucabs.com]
 Sent: Thursday, August 11, 2011 4:16 PM

 To: 'excel-macros@googlegroups.com'
 Subject: RE: $$Excel-Macros$$ Update Data source range  converting
 0 to -



 Thanks this one helped me..



 Can you please also reply on below request;



 I have created several pivot tables  want to update the data source

 range for all the pivot tables all together. (We do have option as
 refresh all for applying the preset pivot criteria in all pivots.)



 Best Regards,

 Amit Desai



 Assistant Manager, Fleet MIS (Corporate)

 Desk No.: 022 40520129

 Cell No.: 9867232534



 From: excel-macros@googlegroups.com
 [mailto:excel-macros@googlegroups.com]
 On Behalf Of Rajan_Verma
 Sent: Thursday, August 11, 2011 3:02 PM

 To: excel-macros@googlegroups.com
 Subject: RE: $$Excel-Macros$$ Update Data source range  converting
 0 to -



 See if it helps, I use conditional Formatting



 From: excel-macros@googlegroups.com
 [mailto:excel-macros@googlegroups.com]
 On Behalf Of mrinal saha
 Sent: Thursday, August 11, 2011 11:46 AM
 To: excel-macros@googlegroups.com
 Subject: Re: $$Excel-Macros$$ Update Data source range  converting
 0 to -



 See the attached file, does it make sense..



 regards,

 Mrinal Saha

 On Thu, Aug 11, 2011 at 10:37 AM, Amit Desai (MERU)
 amit.de...@merucabs.com wrote:

 Dear All,

 Please help me on the following;

 1) I have created several pivot tables  want to update the data
 source range for all the pivot tables all together. (We do have
 option as refresh all for applying the preset pivot criteria in all
 pivots.)
 2) I have few work sheets where in I get the data through formula.
 There may be many cells where I might get data as 0(zero). I want
 to make all the 0 as -. But the total of these - I want as 0.

 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.

 --
 -
 - 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. 

Re: FW: $$Excel-Macros$$ Workbooks Consolidation Macro

2011-08-17 Thread XLS S
Hey Satish,

please see the below link and follow instructions

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

On Wed, Aug 17, 2011 at 11:36 AM, Satish Bandaru snband...@gmail.com wrote:
 hi experts
 please help me.plz find the atachment
 thanks in advance

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


Fwd: FW: $$Excel-Macros$$ Workbooks Consolidation Macro

2011-08-16 Thread vikas gupta
Dear Sir,
Sir I have a query that by using this macro file I am able to merge
different files into single excel but after merging the data is not under
single column heading, Pls. suggest how can I merge files having similar
column headers in all files, so that I can easily sort data as per my
requirement.

Thanks for the help.

Pankaj Chawla
9911104968
 -Original Message-
From: vikas gupta [mailto:vikas.63...@gmail.com]
Sent: 13 August 2011 18:39
To: pankaj.chawl...@gmail.com
Cc: tech_pankajcha...@rediffmail.com
Subject: Fwd: $$Excel-Macros$$ Workbooks Consolidation Macro

-- Forwarded message --
From: ashish koul koul.ash...@gmail.com
Date: Fri, 22 Jul 2011 05:41:02 +0530
Subject: Re: $$Excel-Macros$$ Workbooks Consolidation Macro
To: excel-macros@googlegroups.com

try  this see if it helps



On Thu, Jul 21, 2011 at 10:12 PM, Anish Shrivastava
anish@gmail.comwrote:

 Harish,

 Did you try it.. ??

 On Thu, Jul 21, 2011 at 5:19 PM, Anish Shrivastava
anish@gmail.comwrote:

 Harish,

 PLease ignore the earlier attachment as I forgot to add *DUPLICATE
CHECK*in that macro.

 Use this attachment.

   On Thu, Jul 21, 2011 at 5:09 PM, Anish Shrivastava anish@gmail.com
  wrote:

 Hi Harsih,

 Since you didnt reply about column headers I assumed that it's the same
 for every file on share drive.

 Please see the attached file with macro.

 You must populate the file path in Sheet2-A1.

 Do let me know if it works fine for you.
 Cheers!!
 Anish
   On Thu, Jul 21, 2011 at 4:00 PM, Anish Shrivastava 
 anish@gmail.com wrote:

 Harish,

 I forgot to ask you one thing.
 The column headers in the file you attached will be constant for all
the
 30-35 files which are there on your sharedrive, right?
 Cheers,
 Anish
   On Wed, Jul 20, 2011 at 11:06 PM, Harish Sharma 
 harishsharma...@gmail.com wrote:

 Hi Anish,

 Please find attached the sample file with one row filled.
 And Column C  Column H concatenate should give us unique value so
 if this is repeated then we need to have below requested feature.

 Hope this would be more clear now.

 Thanks
 Harish



 On 20 July 2011 21:32, Anish Shrivastava anish@gmail.com wrote:

 One sample sheet would be helpful to us to see the data structure.

 However, for this *Also identifiy if there is any row duplicated and
 highlight them and paste them into another sheet * There must be any
 particular data field which has to be checked against others in order
to
 find duplicates.

 Macro for consolidation is not a big deal.


 On Wed, Jul 20, 2011 at 7:35 PM, Harish Sharma 
 harishsharma...@gmail.com wrote:

 Hi,

 I had a macro file which was able to consolidate small files but now
 I have a requirement to consolidate 30 workbooks saved in a share
drive and
 this data may even cross 66000 row after consolidation. Can someone
help me
 in creating a macro which picks all the file from shared folder and
 consolidates the one specific worksheet in all the workbook.

 This macro should also be capable of deleting any blank row in any
of
 these 30 workbooks so that we donot miss any data if someone by
error has
 missed a couple of row and entered the data in couple of row below.

 30 workbooks in sharedrive
 one specific worksheet from all of these named as Tracker
 Should cover all the blanks and delete them so that no data missed
 Also identifiy if there is any row duplicated and highlight them and
 paste them into another sheet
 If data crosses excel 2003 limit of row it should move to next
 worksheet.

 Hope to get a solution from excel experts.

 --
 Kind Regards,
 Harish Sharma

 --



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




 --
 Kind Regards,
 Harish Sharma

 --



Re: Fwd: FW: $$Excel-Macros$$ Workbooks Consolidation Macro

2011-08-16 Thread dguillett1

Your source files should all be structured the same. If not, you will have to 
program. Attach samples 

From: vikas gupta 
Sent: Tuesday, August 16, 2011 6:55 AM
To: excel-macros@googlegroups.com 
Cc: pankaj chawla ; tech_pankajcha...@rediffmail.com 
Subject: Fwd: FW: $$Excel-Macros$$ Workbooks Consolidation Macro


Dear Sir,
Sir I have a query that by using this macro file I am able to merge
different files into single excel but after merging the data is not under
single column heading, Pls. suggest how can I merge files having similar
column headers in all files, so that I can easily sort data as per my
requirement.

Thanks for the help.

Pankaj Chawla
9911104968

-Original Message-
From: vikas gupta [mailto:vikas.63...@gmail.com]
Sent: 13 August 2011 18:39
To: pankaj.chawl...@gmail.com
Cc: tech_pankajcha...@rediffmail.com
Subject: Fwd: $$Excel-Macros$$ Workbooks Consolidation Macro

-- Forwarded message --
From: ashish koul koul.ash...@gmail.com
Date: Fri, 22 Jul 2011 05:41:02 +0530
Subject: Re: $$Excel-Macros$$ Workbooks Consolidation Macro
To: excel-macros@googlegroups.com

try  this see if it helps



On Thu, Jul 21, 2011 at 10:12 PM, Anish Shrivastava
anish@gmail.comwrote:

 Harish,

 Did you try it.. ??

 On Thu, Jul 21, 2011 at 5:19 PM, Anish Shrivastava
anish@gmail.comwrote:

 Harish,

 PLease ignore the earlier attachment as I forgot to add *DUPLICATE
CHECK*in that macro.

 Use this attachment.

   On Thu, Jul 21, 2011 at 5:09 PM, Anish Shrivastava anish@gmail.com
  wrote:

 Hi Harsih,

 Since you didnt reply about column headers I assumed that it's the same
 for every file on share drive.

 Please see the attached file with macro.

 You must populate the file path in Sheet2-A1.

 Do let me know if it works fine for you.
 Cheers!!
 Anish
   On Thu, Jul 21, 2011 at 4:00 PM, Anish Shrivastava 
 anish@gmail.com wrote:

 Harish,

 I forgot to ask you one thing.
 The column headers in the file you attached will be constant for all
the
 30-35 files which are there on your sharedrive, right?
 Cheers,
 Anish
   On Wed, Jul 20, 2011 at 11:06 PM, Harish Sharma 
 harishsharma...@gmail.com wrote:

 Hi Anish,

 Please find attached the sample file with one row filled.
 And Column C  Column H concatenate should give us unique value so
 if this is repeated then we need to have below requested feature.

 Hope this would be more clear now.

 Thanks
 Harish



 On 20 July 2011 21:32, Anish Shrivastava anish@gmail.com wrote:

 One sample sheet would be helpful to us to see the data structure.

 However, for this *Also identifiy if there is any row duplicated and
 highlight them and paste them into another sheet * There must be any
 particular data field which has to be checked against others in order
to
 find duplicates.

 Macro for consolidation is not a big deal.


 On Wed, Jul 20, 2011 at 7:35 PM, Harish Sharma 
 harishsharma...@gmail.com wrote:

 Hi,

 I had a macro file which was able to consolidate small files but now
 I have a requirement to consolidate 30 workbooks saved in a share
drive and
 this data may even cross 66000 row after consolidation. Can someone
help me
 in creating a macro which picks all the file from shared folder and
 consolidates the one specific worksheet in all the workbook.

 This macro should also be capable of deleting any blank row in any
of
 these 30 workbooks so that we donot miss any data if someone by
error has
 missed a couple of row and entered the data in couple of row below.

 30 workbooks in sharedrive
 one specific worksheet from all of these named as Tracker
 Should cover all the blanks and delete them so that no data missed
 Also identifiy if there is any row duplicated and highlight them and
 paste them into another sheet
 If data crosses excel 2003 limit of row it should move to next
 worksheet.

 Hope to get a solution from excel experts.

 --
 Kind Regards,
 Harish Sharma

 --



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

Re: FW: $$Excel-Macros$$ Workbooks Consolidation Macro

2011-08-16 Thread Excel VBASQL
I can help email me at excelvba...@gmail.com

On Tue, Aug 16, 2011 at 6:55 AM, vikas gupta vikas.63...@gmail.com wrote:


 Dear Sir,
 Sir I have a query that by using this macro file I am able to merge
 different files into single excel but after merging the data is not under
 single column heading, Pls. suggest how can I merge files having similar
 column headers in all files, so that I can easily sort data as per my
 requirement.

 Thanks for the help.

 Pankaj Chawla
 9911104968
  -Original Message-
 From: vikas gupta [mailto:vikas.63...@gmail.com]
 Sent: 13 August 2011 18:39
 To: pankaj.chawl...@gmail.com
 Cc: tech_pankajcha...@rediffmail.com
 Subject: Fwd: $$Excel-Macros$$ Workbooks Consolidation Macro

 -- Forwarded message --
 From: ashish koul koul.ash...@gmail.com
 Date: Fri, 22 Jul 2011 05:41:02 +0530
 Subject: Re: $$Excel-Macros$$ Workbooks Consolidation Macro
 To: excel-macros@googlegroups.com

 try  this see if it helps



 On Thu, Jul 21, 2011 at 10:12 PM, Anish Shrivastava
 anish@gmail.comwrote:

  Harish,
 
  Did you try it.. ??
 
  On Thu, Jul 21, 2011 at 5:19 PM, Anish Shrivastava
 anish@gmail.comwrote:
 
  Harish,
 
  PLease ignore the earlier attachment as I forgot to add *DUPLICATE
 CHECK*in that macro.
 
  Use this attachment.
 
On Thu, Jul 21, 2011 at 5:09 PM, Anish Shrivastava 
 anish@gmail.com
   wrote:
 
  Hi Harsih,
 
  Since you didnt reply about column headers I assumed that it's the same
  for every file on share drive.
 
  Please see the attached file with macro.
 
  You must populate the file path in Sheet2-A1.
 
  Do let me know if it works fine for you.
  Cheers!!
  Anish
On Thu, Jul 21, 2011 at 4:00 PM, Anish Shrivastava 
  anish@gmail.com wrote:
 
  Harish,
 
  I forgot to ask you one thing.
  The column headers in the file you attached will be constant for all
 the
  30-35 files which are there on your sharedrive, right?
  Cheers,
  Anish
On Wed, Jul 20, 2011 at 11:06 PM, Harish Sharma 
  harishsharma...@gmail.com wrote:
 
  Hi Anish,
 
  Please find attached the sample file with one row filled.
  And Column C  Column H concatenate should give us unique value
 so
  if this is repeated then we need to have below requested feature.
 
  Hope this would be more clear now.
 
  Thanks
  Harish
 
 
 
  On 20 July 2011 21:32, Anish Shrivastava anish@gmail.com
 wrote:
 
  One sample sheet would be helpful to us to see the data structure.
 
  However, for this *Also identifiy if there is any row duplicated
 and
  highlight them and paste them into another sheet * There must be
 any
  particular data field which has to be checked against others in
 order
 to
  find duplicates.
 
  Macro for consolidation is not a big deal.
 
 
  On Wed, Jul 20, 2011 at 7:35 PM, Harish Sharma 
  harishsharma...@gmail.com wrote:
 
  Hi,
 
  I had a macro file which was able to consolidate small files but
 now
  I have a requirement to consolidate 30 workbooks saved in a share
 drive and
  this data may even cross 66000 row after consolidation. Can someone
 help me
  in creating a macro which picks all the file from shared folder and
  consolidates the one specific worksheet in all the workbook.
 
  This macro should also be capable of deleting any blank row in any
 of
  these 30 workbooks so that we donot miss any data if someone by
 error has
  missed a couple of row and entered the data in couple of row below.
 
  30 workbooks in sharedrive
  one specific worksheet from all of these named as Tracker
  Should cover all the blanks and delete them so that no data missed
  Also identifiy if there is any row duplicated and highlight them
 and
  paste them into another sheet
  If data crosses excel 2003 limit of row it should move to next
  worksheet.
 
  Hope to get a solution from excel experts.
 
  --
  Kind Regards,
  Harish Sharma
 
  --
 
 

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

Re: FW: $$Excel-Macros$$ Workbooks Consolidation Macro

2011-08-16 Thread XLS S
hey Vikas,

try to use batch file
open notepad...paste below code then save as
copy.bat

Copy  *Comman file name*.xls output.xls
exit

On Tue, Aug 16, 2011 at 5:25 PM, vikas gupta vikas.63...@gmail.com wrote:

 Dear Sir,
 Sir I have a query that by using this macro file I am able to merge
 different files into single excel but after merging the data is not under
 single column heading, Pls. suggest how can I merge files having similar
 column headers in all files, so that I can easily sort data as per my
 requirement.

 Thanks for the help.

 Pankaj Chawla
 9911104968
 -Original Message-
 From: vikas gupta [mailto:vikas.63...@gmail.com]
 Sent: 13 August 2011 18:39
 To: pankaj.chawl...@gmail.com
 Cc: tech_pankajcha...@rediffmail.com
 Subject: Fwd: $$Excel-Macros$$ Workbooks Consolidation Macro

 -- Forwarded message --
 From: ashish koul koul.ash...@gmail.com
 Date: Fri, 22 Jul 2011 05:41:02 +0530
 Subject: Re: $$Excel-Macros$$ Workbooks Consolidation Macro
 To: excel-macros@googlegroups.com

 try  this see if it helps



 On Thu, Jul 21, 2011 at 10:12 PM, Anish Shrivastava
 anish@gmail.comwrote:

 Harish,

 Did you try it.. ??

 On Thu, Jul 21, 2011 at 5:19 PM, Anish Shrivastava
 anish@gmail.comwrote:

 Harish,

 PLease ignore the earlier attachment as I forgot to add *DUPLICATE
 CHECK*in that macro.

 Use this attachment.

   On Thu, Jul 21, 2011 at 5:09 PM, Anish Shrivastava anish@gmail.com
  wrote:

 Hi Harsih,

 Since you didnt reply about column headers I assumed that it's the same
 for every file on share drive.

 Please see the attached file with macro.

 You must populate the file path in Sheet2-A1.

 Do let me know if it works fine for you.
 Cheers!!
 Anish
   On Thu, Jul 21, 2011 at 4:00 PM, Anish Shrivastava 
 anish@gmail.com wrote:

 Harish,

 I forgot to ask you one thing.
 The column headers in the file you attached will be constant for all
 the
 30-35 files which are there on your sharedrive, right?
 Cheers,
 Anish
   On Wed, Jul 20, 2011 at 11:06 PM, Harish Sharma 
 harishsharma...@gmail.com wrote:

 Hi Anish,

 Please find attached the sample file with one row filled.
 And Column C  Column H concatenate should give us unique value so
 if this is repeated then we need to have below requested feature.

 Hope this would be more clear now.

 Thanks
 Harish



 On 20 July 2011 21:32, Anish Shrivastava anish@gmail.com wrote:

 One sample sheet would be helpful to us to see the data structure.

 However, for this *Also identifiy if there is any row duplicated and
 highlight them and paste them into another sheet * There must be any
 particular data field which has to be checked against others in order
 to
 find duplicates.

 Macro for consolidation is not a big deal.


 On Wed, Jul 20, 2011 at 7:35 PM, Harish Sharma 
 harishsharma...@gmail.com wrote:

 Hi,

 I had a macro file which was able to consolidate small files but now
 I have a requirement to consolidate 30 workbooks saved in a share
 drive and
 this data may even cross 66000 row after consolidation. Can someone
 help me
 in creating a macro which picks all the file from shared folder and
 consolidates the one specific worksheet in all the workbook.

 This macro should also be capable of deleting any blank row in any
 of
 these 30 workbooks so that we donot miss any data if someone by
 error has
 missed a couple of row and entered the data in couple of row below.

 30 workbooks in sharedrive
 one specific worksheet from all of these named as Tracker
 Should cover all the blanks and delete them so that no data missed
 Also identifiy if there is any row duplicated and highlight them and
 paste them into another sheet
 If data crosses excel 2003 limit of row it should move to next
 worksheet.

 Hope to get a solution from excel experts.

 --
 Kind Regards,
 Harish Sharma

 --


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

FW: $$Excel-Macros$$ how to combine two or more excel file data

2011-08-12 Thread Rajan_Verma
Try this :

 

Sub Compile()

On Error GoTo Err_Clear:

Application.ScreenUpdating = False

Application.DisplayAlerts = False

Dim Fso As New Scripting.FileSystemObject

Dim Path As String

 

Application.FileDialog(msoFileDialogFolderPicker).Title = Select Folder to
Pick Downloaded Bills

Application.FileDialog(msoFileDialogFolderPicker).Show

Path = Application.FileDialog(msoFileDialogFolderPicker).SelectedItems(1) 
\

If Path =  Then Exit Sub

 

Application.FileDialog(msoFileDialogFolderPicker).Title = Select Folder to
Save Compiled File

CompilePath = Application.FileDialog(msoFileDialogFolderPicker).Show

compiledPath =
Application.FileDialog(msoFileDialogFolderPicker).SelectedItems(1)  \

If compiledPath =  Then Exit Sub





Dim Counter

Dim File As File

Dim FOlder As FOlder

Dim wb As Workbook

Dim ws As Worksheet

Dim AcWb As Workbook

Set AcWb = ActiveWorkbook

 ActiveWorkbook.Sheets.Add

 ActiveSheet.Name = Index

 

Set FOlder = Fso.GetFolder(Path)

 

For Each File In FOlder.Files

 Counter = Counter + 1

 Set wb = Workbooks.Open(Path  File.Name)



If Application.Ready = True Then

 

 wb.Sheets(Index).Activate

 ActiveSheet.UsedRange.Copy

  AcWb.Sheets(Index).Activate

  Range(A100).End(xlUp).Select

  ActiveSheet.Paste

 Application.CutCopyMode = False

 wb.Close

End If

 

Next

If Counter  0 Then

AcWb.SaveAs compiledPath  Compiled, xlExcel12

AcWb.Close

End If

Err_Clear:

Err.Clear

Resume Next

 

Application.DisplayAlerts = True

Application.ScreenUpdating = True

If Counter  1 Then

MsgBox No File Found For Compile, vbInformation

Else

MsgBox Counter   File Has been Compiled, Please Find your File at
 vbCrLf  compiledPath, vbInformation

End If



End Sub

 

 

 

 

 

 

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of vikas gupta
Sent: Friday, August 12, 2011 1:55 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ how to combine two or more excel file data

 

Dear All

 

Please give me the vba code or any other solution for combine the data of
two or more files

 

Regards

Vikas Gupta

9311334683

-- 

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


FW: $$Excel-Macros$$ Subtract the minimum value based on multiple criteria

2011-08-05 Thread Rajan_Verma
Hi Mukesh

Did you shoot this query again , I have sent a solution for this , see the
attached sheet, Revert if any query you have?

 

From: Rajan_Verma [mailto:rajanverma1...@gmail.com] 
Sent: Friday, August 05, 2011 6:02 PM
To: 'excel-macros@googlegroups.com'
Subject: RE: $$Excel-Macros$$ Subtract the minimum value based on multiple
criteria

 

 

Try this

=C3-MIN(OFFSET(INDEX(A:A,MATCH(A3,A:A,0),1),,2,COUNTIF(A:A,A3),1))

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Mukesh Gupta
Sent: Friday, August 05, 2011 2:58 PM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Subtract the minimum value based on multiple
criteria

 

Dear Friend,

You just need to use the following formula 


A 

B  

C

D


City   

Carrier

Total  

Diff

 


Albertville

A  

700.00 


In the D field type =C3-$C$3

and just copy and paste this to remaining below in the Diff field.


Do revert for further clarification.

Regards
Mukesh Gupta

On Thu, Aug 4, 2011 at 9:54 PM, dewbro2 kdew...@brownmre.com wrote:

I have a worksheet that tracks rates for multiple lanes by multiple
carriers.  I am trying to find an easy way to calculate the difference
between the rate for each carrier on a lane and the lowest rate for a
given lane.  I am spending a lot of time manually correcting formulas,
and I would like to have 1 formula that I can copy throughout the
worksheet.  Example:  Where the City is Albertville, the lowest rated
lane is Carrier A at $700 dollars, so I want the value of zero in
the Diff field (=sum(C1-C1)).  However for Carrier E for the
Albertville lane, I want a value of 536.50 in the Diff field which
is the difference between the rate in cell C6 and the minimum rate in
cell C1.  I will need to do this for every carrier/lane in my
worksheet and there are thousands of these entries.  Hope this makes
sense.  Any solutions would be GREATLY appreciated.

ROW/COL A   B   C   D
1   CityCarrier Total   Diff
2   Albertville A   700.00  0.00
3   Albertville B   725.00  25.00
4   Albertville C   728.00  28.00
5   Albertville D   750.00  50.00
6   Albertville E   1,236.50536.50
7   Albertville F   1,323.11623.11
8   Albertville G   1,374.75674.75
9   Albertville H   1,834.751,134.75
10  BessemerA   500.00  0.00
11  BessemerB   525.00  25.00
12  BessemerC   550.00  50.00
13  BessemerD   560.00  60.00
14  BessemerE   570.00  70.00
15  BessemerF   700.00  200.00

-- 

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

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


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


  1   2   >