Re: $$Excel-Macros$$ Need help

2016-03-29 Thread Paul Schreiner
Since I don't know anything about your workbook or the types of values, I'd 
suggest something like what follows.I've run into issues where Excel doesn't 
treat a "null" value and a "blank/empty" cell as the same.Plus, when using 
something like: wshD.Cells(r, "C")the "default" property is "value", but 
wshD.Cells(r, "C") really describes a RANGE object, which includes properties 
like "Borders", "font", "background", etc.so, if you were to test 
if(wshD.Cells(r, "C") = "")Then Excel MIGHT say it is always "false", since a 
range object isn't "blank", it has LOTS of properties!Again, I've had 
unexpected results.Also, if the number 1 is placed in wshD.Cells(r, "C")then 
wshD.Cells(r, "C").Value might be 1.but if the cell previously had an alpha 
character placed there, then wshD.Cells(r, "C").Value might be "1"and "1" <> 
1I've even had users "clear" a cell by hitting a space bar instead of the 
Delete or Backspace key!
so, to ensure a consistent "test" for an empty cell, I trim the value, then 
concatenate the contents with an "X". This converts the value to a string, and 
if the resulting value is simply "X", then I know the cell was empty.I know, 
it's ugly, but it works.
Next, I start with a flag set to "True".If any of the "tests" return "false", 
then there's no need to test further.
    Dim FindFlag As Boolean
    FindFlag = True
    '
    If ((FindFlag) And (Trim(wshD.Cells(r, "C").Value) & "X" <> "X")) Then
    If (Not (wshD.Cells(r, "C") >= rngD2)) Then
    FindFlag = False
    End If
    End If
    '
    If ((FindFlag) And (Trim(wshD.Cells(r, "C").Value) & "X" <> "X")) Then
    If (Not (wshD.Cells(r, "C") <= rngD)) Then
    FindFlag = False
    End If
    End If
    '
    If ((FindFlag) And (Trim(wshD.Cells(r, "G").Value) & "X" <> "X")) Then
    If (Not (wshD.Cells(r, "G") = rngD)) Then
    FindFlag = False
    End If
    End If
    '
    If ((FindFlag) And (Trim(wshD.Cells(r, "E").Value) & "X" <> "X")) Then
    If (Not (wshD.Cells(r, "E") = rngD4)) Then
    FindFlag = False
    End If
    End If
    '
    If (FindFlag) Then
    Worksheets("Data").Rows(r).EntireRow.Copy Destination:=wshP.Range("A" & 
wshP.Rows.Count).End(xlUp).Offset(11 + n, 0)
    Application.CutCopyMode = False
    n = n + 1
    End If
    ' 
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
- 

On Tuesday, March 29, 2016 4:11 AM, Karthik  
wrote:
 
 

 

Hello,
I have formulated a macro to search data, from a worksheet, using user forms. 
User form has Date picker and couple of comboxes. Idea is to search between two 
dates along with two criterias.
My problem is, macro doesnt function if I do not enter all the search 
criterias. Ideally, it should search based on given criterias. I wil just copy 
the main part of the macro as others are not relevantto my question
If (wshD.Cells(r, "C") >= rngD2 And wshD.Cells(r, "C") <= rngD) And 
(wshD.Cells(r, "G") = rngD And wshD.Cells(r, "E") = rngD4) Then         
Worksheets("Data").Rows(r).EntireRow.Copy Destination:=wshP.Range("A" & 
wshP.Rows.Count).End(xlUp).Offset(11 + n, 0)         Application.CutCopyMode = 
False         n = n + 1                  End If
I think change needed here when any of the criteria points to Nothing they 
should search the rest.
RegardsKarthik-- 
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 e

Re: $$Excel-Macros$$ Need Help

2014-08-21 Thread Vaibhav Joshi
you want only count of ladies / gents?

Or in case of ladies, do you want how many of them came before 9:30 & left
after 7:30??


On Thu, Aug 21, 2014 at 2:04 PM, karthik N  wrote:

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

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-08-21 Thread karthik N
Dear Sir,

How many ladies came before 9.30 and left 7.30

  SNo Gendal Name Shift  InTime  OutTime Tot.  Dur. Gents Ladies  1 Ms Priya
S GS 9:30 19:30 10:00 - Yes  2 Mr karthik Sam 01:44 21:52 4:36 No -  3 Mr
ANAND GS 09:28 21:16 7:42 No -  4 Mr Kavirajan ST GS 10:03 19:08 8:46 No -
5 Mr SURESH GS 10:54 20:10 7:43 No -  6 MS Manjula K. M S 09:01 19:24 1:28
No -

I Want This type of result

Pelase help



On Thu, Aug 21, 2014 at 2:23 PM, Vaibhav Joshi  wrote:

> you want only count of ladies / gents?
>
> Or in case of ladies, do you want how many of them came before 9:30 & left
> after 7:30??
>
>
> On Thu, Aug 21, 2014 at 2:04 PM, karthik N  wrote:
>
>> Dear Sir,
>>
>> Please find the attached file..
>>
>> we have to calculate time duration starting from 09:30 to 07:30 for
>> ladies and gents we have to calculate duration starting from 09:30 to 08:30
>>
>>
>> How many ladies working in between  09:30 to 07:30
>>
>> How many gents working in  between 09:30 to 08:30
>>
>>
>>
>> --
>>
>> *Regards*
>> karthik
>>
>> --
>> 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*

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-08-21 Thread Vaibhav Joshi
Check this..

Cheers!!


On Thu, Aug 21, 2014 at 3:00 PM, karthik N  wrote:

> Dear Sir,
>
> How many ladies came before 9.30 and left 7.30
>
>   SNo Gendal Name Shift  InTime  OutTime Tot.  Dur. Gents Ladies  1 Ms Priya
> S GS 9:30 19:30 10:00 - Yes  2 Mr karthik Sam 01:44 21:52 4:36 No -  3 Mr
> ANAND GS 09:28 21:16 7:42 No -  4 Mr Kavirajan ST GS 10:03 19:08 8:46 No -
> 5 Mr SURESH GS 10:54 20:10 7:43 No -  6 MS Manjula K. M S 09:01 19:24 1:28
> No -
>
> I Want This type of result
>
> Pelase help
>
>
>
> On Thu, Aug 21, 2014 at 2:23 PM, Vaibhav Joshi  wrote:
>
>> you want only count of ladies / gents?
>>
>> Or in case of ladies, do you want how many of them came before 9:30 &
>> left after 7:30??
>>
>>
>> On Thu, Aug 21, 2014 at 2:04 PM, karthik N  wrote:
>>
>>> Dear Sir,
>>>
>>> Please find the attached file..
>>>
>>> we have to calculate time duration starting from 09:30 to 07:30 for
>>> ladies and gents we have to calculate duration starting from 09:30 to 08:30
>>>
>>>
>>> How many ladies working in between  09:30 to 07:30
>>>
>>> How many gents working in  between 09:30 to 08:30
>>>
>>>
>>>
>>> --
>>>
>>> *Regards*
>>> karthik
>>>
>>> --
>>> 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*
>
> --
> 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 htt

Re: $$Excel-Macros$$ Need Help

2014-08-21 Thread karthik N
Hi Vaibhav

Thanks for replay,

But one small doubt

  SNo Gender Name Shift  InTime  OutTime Tot.  Dur. Gents Ladies  2 MR
karthik Sam 01:44 21:52 4:36 Yes -  3 MR ANAND GS 09:28 21:16 7:42 Yes -
Intime  8 MR NIRMAL GS 09:28 21:18 10:14 Yes - <09:30  12 MR RAJI GS 10:22
22:35 10:48 Yes - >09.30




On Thu, Aug 21, 2014 at 3:11 PM, Vaibhav Joshi  wrote:

> Check this..
>
> Cheers!!
>
>
> On Thu, Aug 21, 2014 at 3:00 PM, karthik N  wrote:
>
>> Dear Sir,
>>
>> How many ladies came before 9.30 and left 7.30
>>
>>   SNo Gendal Name Shift  InTime  OutTime Tot.  Dur. Gents Ladies  1 Ms Priya
>> S GS 9:30 19:30 10:00 - Yes  2 Mr karthik Sam 01:44 21:52 4:36 No -  3 Mr
>> ANAND GS 09:28 21:16 7:42 No -  4 Mr Kavirajan ST GS 10:03 19:08 8:46 No
>> -  5 Mr SURESH GS 10:54 20:10 7:43 No -  6 MS Manjula K. M S 09:01 19:24
>> 1:28 No -
>>
>> I Want This type of result
>>
>> Pelase help
>>
>>
>>
>> On Thu, Aug 21, 2014 at 2:23 PM, Vaibhav Joshi  wrote:
>>
>>> you want only count of ladies / gents?
>>>
>>> Or in case of ladies, do you want how many of them came before 9:30 &
>>> left after 7:30??
>>>
>>>
>>> On Thu, Aug 21, 2014 at 2:04 PM, karthik N 
>>> wrote:
>>>
 Dear Sir,

 Please find the attached file..

 we have to calculate time duration starting from 09:30 to 07:30 for
 ladies and gents we have to calculate duration starting from 09:30 to 08:30


 How many ladies working in between  09:30 to 07:30

 How many gents working in  between 09:30 to 08:30



 --

 *Regards*
 karthik

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

Re: $$Excel-Macros$$ Need Help

2014-08-21 Thread Vaibhav Joshi
since your value is not stored as time it is giving incorrect result.,
convert it to time or manually re enter values you will get correct result.

Cheers!!


On Thu, Aug 21, 2014 at 6:19 PM, karthik N  wrote:

> Hi Vaibhav
>
> Thanks for replay,
>
> But one small doubt
>
>   SNo Gender Name Shift  InTime  OutTime Tot.  Dur. Gents Ladies  2 MR
> karthik Sam 01:44 21:52 4:36 Yes -  3 MR ANAND GS 09:28 21:16 7:42 Yes -
> Intime  8 MR NIRMAL GS 09:28 21:18 10:14 Yes - <09:30  12 MR RAJI GS 10:22
> 22:35 10:48 Yes - >09.30
>
>
>
>
> On Thu, Aug 21, 2014 at 3:11 PM, Vaibhav Joshi  wrote:
>
>> Check this..
>>
>> Cheers!!
>>
>>
>> On Thu, Aug 21, 2014 at 3:00 PM, karthik N  wrote:
>>
>>> Dear Sir,
>>>
>>> How many ladies came before 9.30 and left 7.30
>>>
>>>   SNo Gendal Name Shift  InTime  OutTime Tot.  Dur. Gents Ladies  1 Ms Priya
>>> S GS 9:30 19:30 10:00 - Yes  2 Mr karthik Sam 01:44 21:52 4:36 No -  3
>>> Mr ANAND GS 09:28 21:16 7:42 No -  4 Mr Kavirajan ST GS 10:03 19:08 8:46
>>> No -  5 Mr SURESH GS 10:54 20:10 7:43 No -  6 MS Manjula K. M S 09:01
>>> 19:24 1:28 No -
>>>
>>> I Want This type of result
>>>
>>> Pelase help
>>>
>>>
>>>
>>> On Thu, Aug 21, 2014 at 2:23 PM, Vaibhav Joshi  wrote:
>>>
 you want only count of ladies / gents?

 Or in case of ladies, do you want how many of them came before 9:30 &
 left after 7:30??


 On Thu, Aug 21, 2014 at 2:04 PM, karthik N 
 wrote:

> Dear Sir,
>
> Please find the attached file..
>
> we have to calculate time duration starting from 09:30 to 07:30 for
> ladies and gents we have to calculate duration starting from 09:30 to 
> 08:30
>
>
> How many ladies working in between  09:30 to 07:30
>
> How many gents working in  between 09:30 to 08:30
>
>
>
> --
>
> *Regards*
> karthik
>
> --
> 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*
>>>
>>> --
>>> 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, Formul

Re: $$Excel-Macros$$ Need Help

2014-11-15 Thread Vaibhav Joshi
Used this Formula in D2 and drag down. .

=SUBSTITUTE(A2," ","")

Cheers
On Nov 16, 2014 9:32 AM, "Imran Khan"  wrote:

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

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-11-23 Thread Ashish Kumar
Hi Chandru,

PFA

Regards
Ashish

On 24 November 2014 at 11:57, Chandru  wrote:

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


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


Re: $$Excel-Macros$$ Need Help

2014-12-24 Thread Vaibhav Joshi
hi

what is WID..

if you want to file Apr-Mar below then select range B2:B13, after that
using mouse take your cursor to bottom end of right side till it becomes
dark black plus sign & then double click on it,.



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

On Wed, Dec 24, 2014 at 3:32 PM, Raj Kumar  wrote:

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

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-12-24 Thread Vaibhav Joshi
Check this...

is this what you are looking for?

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

On Wed, Dec 24, 2014 at 3:38 PM, Vaibhav Joshi  wrote:

> hi
>
> what is WID..
>
> if you want to file Apr-Mar below then select range B2:B13, after that
> using mouse take your cursor to bottom end of right side till it becomes
> dark black plus sign & then double click on it,.
>
>
>
> +
> *I did not do this for you. God is here working through me for you.*
>
> On Wed, Dec 24, 2014 at 3:32 PM, Raj Kumar  wrote:
>
>> Hi Expert,
>>
>> we need your help we have attached excel file.
>> actuall i have data based on Wid and i have to update in attached as
>> mentioned below based on formula
>>
>> WID Months
>> 1  April
>> 1  May
>> 1  June
>> 1  July
>> 1  August
>> 1  September
>> 1  October
>> 1  November
>> 1  December
>> 1  January
>> 1  February
>> 1  March
>> 2  April
>>
>> etc
>>
>> so kindly help me based on formula
>>
>>  --
>> 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.


JK WID with Month Wise1.xlsx
Description: MS-Excel 2007 spreadsheet


Re: $$Excel-Macros$$ Need Help

2014-12-24 Thread Raj Kumar
hi,

WIid is Whole seller unique id and i have to reflect total months from
april to march individully based on WID

so kidnly help me

On 24 December 2014 at 15:38, Vaibhav Joshi  wrote:

> hi
>
> what is WID..
>
> if you want to file Apr-Mar below then select range B2:B13, after that
> using mouse take your cursor to bottom end of right side till it becomes
> dark black plus sign & then double click on it,.
>
>
>
> +
> *I did not do this for you. God is here working through me for you.*
>
> On Wed, Dec 24, 2014 at 3:32 PM, Raj Kumar  wrote:
>
>> Hi Expert,
>>
>> we need your help we have attached excel file.
>> actuall i have data based on Wid and i have to update in attached as
>> mentioned below based on formula
>>
>> WID Months
>> 1  April
>> 1  May
>> 1  June
>> 1  July
>> 1  August
>> 1  September
>> 1  October
>> 1  November
>> 1  December
>> 1  January
>> 1  February
>> 1  March
>> 2  April
>>
>> etc
>>
>> so kindly help me based on formula
>>
>>  --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to excel-macros+unsubscr...@googlegroups.com.
>> To post to this group, send email to excel-macros@googlegroups.com.
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-12-24 Thread ashish koul
try this

=TEXT(DATE(2014,3+COUNTIF($A$1:A2,A2),1),"")

On Wed, Dec 24, 2014 at 3:46 PM, Raj Kumar  wrote:

> hi,
>
> WIid is Whole seller unique id and i have to reflect total months from
> april to march individully based on WID
>
> so kidnly help me
>
> On 24 December 2014 at 15:38, Vaibhav Joshi  wrote:
>
>> hi
>>
>> what is WID..
>>
>> if you want to file Apr-Mar below then select range B2:B13, after that
>> using mouse take your cursor to bottom end of right side till it becomes
>> dark black plus sign & then double click on it,.
>>
>>
>>
>> +
>> *I did not do this for you. God is here working through me for you.*
>>
>> On Wed, Dec 24, 2014 at 3:32 PM, Raj Kumar  wrote:
>>
>>> Hi Expert,
>>>
>>> we need your help we have attached excel file.
>>> actuall i have data based on Wid and i have to update in attached as
>>> mentioned below based on formula
>>>
>>> WID Months
>>> 1  April
>>> 1  May
>>> 1  June
>>> 1  July
>>> 1  August
>>> 1  September
>>> 1  October
>>> 1  November
>>> 1  December
>>> 1  January
>>> 1  February
>>> 1  March
>>> 2  April
>>>
>>> etc
>>>
>>> so kindly help me based on formula
>>>
>>>  --
>>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
>>> It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>>> https://www.facebook.com/discussexcel
>>>
>>> FORUM RULES
>>>
>>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>>> will not get quick attention or may not be answered.
>>> 2) Don't post a question in the thread of another member.
>>> 3) Don't post questions regarding breaking or bypassing any security
>>> measure.
>>> 4) Acknowledge the responses you receive, good or bad.
>>> 5) Jobs posting is not allowed.
>>> 6) Sharing copyrighted material and their links is not allowed.
>>>
>>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>>> members are not responsible for any loss.
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "MS EXCEL AND VBA MACROS" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to excel-macros+unsubscr...@googlegroups.com.
>>> To post to this group, send email to excel-macros@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/excel-macros.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to excel-macros+unsubscr...@googlegroups.com.
>> To post to this group, send email to excel-macros@googlegroups.com.
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this gr

Re: $$Excel-Macros$$ Need Help

2014-12-24 Thread Vaibhav Joshi
Try formula given by Ashish Koul, its working great!!

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

On Wed, Dec 24, 2014 at 3:55 PM, ashish koul  wrote:

> try this
>
> =TEXT(DATE(2014,3+COUNTIF($A$1:A2,A2),1),"")
>
> On Wed, Dec 24, 2014 at 3:46 PM, Raj Kumar  wrote:
>
>> hi,
>>
>> WIid is Whole seller unique id and i have to reflect total months from
>> april to march individully based on WID
>>
>> so kidnly help me
>>
>> On 24 December 2014 at 15:38, Vaibhav Joshi  wrote:
>>
>>> hi
>>>
>>> what is WID..
>>>
>>> if you want to file Apr-Mar below then select range B2:B13, after that
>>> using mouse take your cursor to bottom end of right side till it becomes
>>> dark black plus sign & then double click on it,.
>>>
>>>
>>>
>>> +
>>> *I did not do this for you. God is here working through me for you.*
>>>
>>> On Wed, Dec 24, 2014 at 3:32 PM, Raj Kumar  wrote:
>>>
 Hi Expert,

 we need your help we have attached excel file.
 actuall i have data based on Wid and i have to update in attached as
 mentioned below based on formula

 WID Months
 1  April
 1  May
 1  June
 1  July
 1  August
 1  September
 1  October
 1  November
 1  December
 1  January
 1  February
 1  March
 2  April

 etc

 so kindly help me based on formula

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

Re: $$Excel-Macros$$ need help

2013-04-12 Thread Abhishek Jain
Does this help ?


On Fri, Apr 12, 2013 at 1:56 PM,  wrote:

> I have worked on macros but not at a advanced level. Now i have been asked
> to do the following and  need help
>
> 1. list down all excel files if a folder is selected by a user. i have
> created the browse button which takes me to browse folder whre i can select
> a folder.also created a fetch command button to fetch files
>
> all i dont know is how to list down excel files in the excel sheet.pls help
>
> --
> 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.




File names in Sheet.xlsm
Description: Binary data


Re: $$Excel-Macros$$ need help

2013-04-12 Thread Rahim Sharieff
Thanks Abhishek..

This is really very usefull..

Regards,
Rahim


On Fri, Apr 12, 2013 at 2:59 PM, Abhishek Jain wrote:

> Sorry the earlier file fetches all files from a folder.
>
> If you want to list only excel files or of any other type, this gives an
> excellent choice. This has many other functions too.
>
>  Thanks VM for writing this.
>
>
> On Fri, Apr 12, 2013 at 2:30 PM, Abhishek Jain wrote:
>
>> Does this help ?
>>
>>
>> On Fri, Apr 12, 2013 at 1:56 PM,  wrote:
>>
>>> I have worked on macros but not at a advanced level. Now i have been
>>> asked to do the following and  need help
>>>
>>> 1. list down all excel files if a folder is selected by a user. i have
>>> created the browse button which takes me to browse folder whre i can select
>>> a folder.also created a fetch command button to fetch files
>>>
>>> all i dont know is how to list down excel files in the excel sheet.pls
>>> help
>>>
>>> --
>>> 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.
>
>
>



-- 
Thanks & Regards,
Rahim Sharieff

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Need help.

2013-05-10 Thread Prabhu Pinky
Dear Anil,

Please find the attached file.

One more help needed.

In the attached file there is three sheets.

First sheet is the data where i will update week on week. By the end of
month i have to prepare the report as in third sheet.
actually what i do.. i will collate the week on week data to month as in
second sheet, and then i will prepare the final report as in third sheet.
this kills my time and what i required is, i need a template which will
automatically calculate the month data without collating the week on week
-> month data (second sheet).

i hope you will get my point. attached file is for your reference.


Thanks,
Prabhu R

On 10 May 2013 10:09, अनिल नारायण गवली  wrote:

> Dear Prabhu,
>
> See the attachment.
>
> Warm Regards,
> Gawli Anil
>
>
> On Fri, May 10, 2013 at 9:35 AM, Prabhu Pinky wrote:
>
>> Hi Experts,
>>
>> Please find the attached excel.
>>
>> My requirement is :
>>
>>1. There should be only one command button.
>>2. There should be option for command button like Sum, Average,
>>Sumproduct etc.. i can select the formula whichever is required.
>>3. If i select the cell "I4" and if i press the command button i have
>>to get the sum of last seven date Offered.
>>4. If i select the cell "J4" and if i press the command button i have
>>to get the sum of last seven date Handled.
>>5. If i select the cell "I4" and if i press the command button i have
>>to get the sumproduct of AHT.
>>
>> Actually for example i have given only for 7 days data, my actual
>> requirement is i need to do this for every month. i mean there will be one
>> month data i need to calculate for every month using this same method.
>>
>>
>>
>> Regards,
>> Prabhu R
>>
>>  --
>> 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.
>>
>>
>>
>
>
>
> --
> Thanks & Regards,
> Gawli Anil Narayan
> Software Developer,
> Abacus Software Services Pvt Ltd
>

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




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


Re: $$Excel-Macros$$ Need help

2013-06-20 Thread Anoop K Sharma
use conditional formatting.


On Thu, Jun 20, 2013 at 2:02 PM, thameem  wrote:

> Dear Members,
>
> plz help me to get formuale for high-lighting selected cells
> automatically, when value of one cell get 0 or 1 etc
>
>
> regards
> Thameem.M
>
> --
> 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.
>
>
>



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

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Need help

2013-06-20 Thread thameem
thank you


On Fri, Jun 21, 2013 at 5:50 AM, Anoop K Sharma wrote:

> use conditional formatting.
>
>
> On Thu, Jun 20, 2013 at 2:02 PM, thameem  wrote:
>
>> Dear Members,
>>
>> plz help me to get formuale for high-lighting selected cells
>> automatically, when value of one cell get 0 or 1 etc
>>
>>
>> regards
>> Thameem.M
>>
>> --
>> 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.
>>
>>
>>
>
>
>
> --
> Regards,
> Anoop
> Sr. Developer
> Facebook ID - https://www.facebook.com/anooop.k.sharma
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Need help

2013-06-27 Thread thameem
there is prob, i tried one formula {=A10=today()}, but its not getting
highlight, might be because  of vlookup, example i added vlookup formula,
for "A10", based on A10 cell date, I need to highlight A1:A10


On Thu, Jun 27, 2013 at 4:04 PM, Divaker Pandey  wrote:

> See in attached screen shot
>
>
> On Thu, Jun 27, 2013 at 5:20 PM, thameem  wrote:
>
>> Dear all,
>>
>> one more help needed,
>>
>> I want to highlight range of cells, based on today date,
>>
>> for example,
>>
>> i have file 1 and file 2, I will update file 1 every time and there is
>> link (vlookup) in file 2 with file 1, in file 1, I will just enter dates,
>> suppose i opened file 2, if there is dates of today... then today's date
>> row must get highligh, if i open file 2 after 10 date, if there is 10th
>> date is there, then that date row must get highlight, plz help me
>>
>> regards
>> Thameem
>>
>> --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to excel-macros+unsubscr...@googlegroups.com.
>> To post to this group, send email to excel-macros@googlegroups.com.
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Need help

2013-07-22 Thread Dhaval Shah
Thanks Ravinder :)


On Mon, Jul 22, 2013 at 4:05 PM, ravinder negi wrote:

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

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Need help

2013-07-27 Thread Abhishek Jain
(a) This is not a Windows help forum.
(b) What you're asking supports piracy and is probably illegal.


On Sat, Jul 27, 2013 at 3:48 PM, Cute Awesome  wrote:

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

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

FORUM RULES

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

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




RE: $$Excel-Macros$$ Need help

2013-07-27 Thread Excel Learn
 

K do one thing go to start button->type cmd ->write click over there and
select "run as administration" then type in command prompt "slmgr -rearm",
your windows will reactivate.

 

 

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Cute Awesome
Sent: Saturday, July 27, 2013 3:48 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Need help

 

I am using windows 7 i am not using genuine software for the last 2 years

now i have message on my scree that this copy of winos is not genuine and i
want to remove this. how can i do that pls help me out.

 

Thanks, 

Regard

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

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Need help

2013-07-28 Thread P.VIJAYKUMAR
Respected Cute Awsome,

You can find cracks and activation keys for download.Just google for
windows 7 activation keys or download a cracked version and install.Then
you will not receive the message.

Regards,
Vijaykumar


On Sat, Jul 27, 2013 at 4:38 PM, Excel Learn wrote:

> ** **
>
> K do one thing go to start button->type cmd ->write click over there and
> select “run as administration” then type in command prompt “slmgr -rearm”,
> your windows will reactivate.
>
> ** **
>
> ** **
>
> ** **
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *Cute Awesome
> *Sent:* Saturday, July 27, 2013 3:48 PM
> *To:* excel-macros@googlegroups.com
> *Subject:* $$Excel-Macros$$ Need help
>
> ** **
>
> I am using windows 7 i am not using genuine software for the last 2 years*
> ***
>
> now i have message on my scree that this copy of winos is not genuine and
> i want to remove this. how can i do that pls help me out.
>
> ** **
>
> Thanks, 
>
> Regard
>
> --
> 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.
>
>
>



-- 









P.VIJAY KUMAR

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ need help

2013-08-12 Thread ashish koul
can u share the sample file ...


On Mon, Aug 12, 2013 at 1:05 PM, thameem  wrote:

> Dear all,
>
> for example I have one excel with 40 sheets, in those sheets I have one
> total r sum... I need formuale or codes, to sum all total of 40 sheets in
> one sheet...
>
> --
> 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.
>
>
>



-- 
*Regards*
* *
*Ashish Koul*


*Visit*
*My Excel Blog *
Like Us on 
Facebook
Join Us on Facebook 


P Before printing, think about the environment.

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ need help

2013-09-02 Thread Vandalo
Hi Thameem,

Suppose you have the total for everyone of the 40 sheets on cell B100. The
following formula would sum every total of the 40 sheets you have.
I guess this is what you want.

=SUM(Plan2!B100;Plan3!B100;Plan4!B100)

Best regards.

OS


2013/8/12 ashish koul 

> can u share the sample file ...
>
>
> On Mon, Aug 12, 2013 at 1:05 PM, thameem  wrote:
>
>> Dear all,
>>
>> for example I have one excel with 40 sheets, in those sheets I have one
>> total r sum... I need formuale or codes, to sum all total of 40 sheets in
>> one sheet...
>>
>> --
>> 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.
>>
>>
>>
>
>
>
> --
> *Regards*
> * *
> *Ashish Koul*
>
>
> *Visit*
> *My Excel Blog *
> Like Us on 
> Facebook
> Join Us on Facebook 
>
>
> P Before printing, think about the environment.
>
>
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
ITWare

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-03-20 Thread Divaker Pandey
you can get max date by the pivot table.


Regards,
Divaker


On Mon, Mar 17, 2014 at 5:47 PM, Imran khan  wrote:

> Hi Friends,
>
> I am stuck in working file where i need your help. I have attached file
> for formula.
>
> Thanks & Regards,
>
> *Imran Khan*
>
> *Lead Planner - OR/CSU*
>
> Ras Al-Khair Industrial City
>
> P.O. Box 11342, Jubail Industrial City - 31961,
>
> Saudi Arabia
>
> Mobile Phone: +966-555160349
>
> Email : kha...@mac.maaden.com.sa
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-05-23 Thread Abhishek Jain
=IF(AND(C2="",D2>1),1,0)

Drag down.

HTH/Abhishek


On Sat, May 24, 2014 at 1:04 AM, Imran Khan  wrote:

> Dear Friends,
>
> Need your help in IF formula. I have attach the file for your input.
>
> Thanks & Regards,
>
>  *Imran Khan*
>
> *Lead Planner - OR/CSU*
>
> Ras Al-Khair Industrial City
>
> P.O. Box 11342, Jubail Industrial City – 31961,
>
> Saudi Arabia
>
> Mobile Phone: +966-555160349
>
> Email : kha...@mac.maaden.com.sa
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Need Help

2014-06-13 Thread Divaker Pandey
you can use pivot table option


On Fri, Jun 13, 2014 at 1:23 AM, Imran Khan  wrote:

> Dear All,
>
> I need your help to summarize the sheet. I have attach the file as an
> example. I am looking formula to summarize matching with T1A, T1R & T2 from
> Data sheet.
>
> Please help me.
>
> I applogise for file size 460KB as i am trying to reduce, but i am unable.
>
> Thanks & Regards,
>
> *Imran Khan*
>
> *Lead Planner - OR/CSU*
>
> Ras Al-Khair Industrial City
>
> P.O. Box 11342, Jubail Industrial City – 31961,
>
> Saudi Arabia
>
> Mobile Phone: +966-555160349
>
> Email : kha...@mac.maaden.com.sa
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


RE: $$Excel-Macros$$ need help!!!

2014-08-08 Thread Mihai Ghilea
Try this...

 

Mihai Ghilea

Network administrator

 Sigla_METABRAS_STEEL_PEOPLEmica

ROMANIA

SC METABRAS SRL Brasov

Str. Grivitei A44, RO 500182

CUI: RO6340028

RC: J08/2507/1994

CS: 2.840.000 RON

T:   +40 (0)268 407 410 / 143

F:   +40 (0)268 407 426

M:  +40 (0)728 994 113

E:   mihai.ghi...@metabras.ro

W:   www.metabras.ro;  
 http://fierforjat.metabras.ro

P Think green!. Do you really need to print this email?

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Lieke Van Klink
Sent: Friday, August 08, 2014 1:00 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ need help!!!

 

Hy guys!

I am a student from holland, doing my thesis. and i need some help with excel 
(i never had to use it before, so have no clue on how it works, tried so much 
already and am still failing, regular sites do not help at all)
I am trying to convert my time notation: min,sec ex. 23,54 into a mm:ss 
notation. but all i try Excel turns it into an hh:mm:ss notation as follows: 
23:54:00 where it is supposed to be 00:23:54
How do i correct this? (NOTE first notation has comma! thats where the issue 
starts)

the goal here is to convert the first notation: mm,sec into all seconds so for 
example: 4,33 becomes 4*60=240, 240+33=273 sec. (if there is an easier way of 
transforming that firat notation into omly seconds pleas telle me?!!! 
Im desperate, its for my thesis and I am so stuck on this.

I hope someone of you is able to help me!!!
PS: pleas do explain it in simple minds english, this is not my first language.

If you can give met the notation that would be even better

thanks in advance!!!

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


Seconds.xlsx
Description: MS-Excel 2007 spreadsheet


Re: $$Excel-Macros$$ need help!!!

2014-08-08 Thread Prafull Jadhav
find the same

Regards,
Prafull Jadhav
9920553518


On 8 August 2014 16:19, Mihai Ghilea  wrote:

>  Try this...
>
>
>
> Mihai Ghilea
>
> Network administrator
>
>  [image: Sigla_METABRAS_STEEL_PEOPLEmica]
>
> ROMANIA
>
> SC METABRAS SRL Brasov
>
> Str. Grivitei A44, RO 500182
>
> CUI: RO6340028
>
> RC: J08/2507/1994
>
> CS: 2.840.000 RON
>
> T:   +40 (0)268 407 410 / 143
>
> F:   +40 (0)268 407 426
>
> M:  +40 (0)728 994 113
>
> E: mihai.ghi...@metabras.ro 
>
> W: www.metabras.ro; http://fierforjat.metabras.ro
>
> *P* *Think green!**. Do you really need to print this email?*
>
>
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *Lieke Van Klink
> *Sent:* Friday, August 08, 2014 1:00 PM
> *To:* excel-macros@googlegroups.com
> *Subject:* $$Excel-Macros$$ need help!!!
>
>
>
> Hy guys!
>
> I am a student from holland, doing my thesis. and i need some help with
> excel (i never had to use it before, so have no clue on how it works, tried
> so much already and am still failing, regular sites do not help at all)
> I am trying to convert my time notation: min,sec ex. 23,54 into a mm:ss
> notation. but all i try Excel turns it into an hh:mm:ss notation as
> follows: 23:54:00 where it is supposed to be 00:23:54
> How do i correct this? (NOTE first notation has comma! thats where the
> issue starts)
>
> the goal here is to convert the first notation: mm,sec into all seconds so
> for example: 4,33 becomes 4*60=240, 240+33=273 sec. (if there is an easier
> way of transforming that firat notation into omly seconds pleas telle
> me?!!!
> Im desperate, its for my thesis and I am so stuck on this.
>
> I hope someone of you is able to help me!!!
> PS: pleas do explain it in simple minds english, this is not my first
> language.
>
> If you can give met the notation that would be even better
>
> thanks in advance!!!
>
> --
> 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 y

Re: $$Excel-Macros$$ need help!!!

2014-08-08 Thread Prafull Jadhav
find the same...


Regards,
Prafull Jadhav
9920553518


On 8 August 2014 16:39, Prafull Jadhav  wrote:

> find the same
>
> Regards,
> Prafull Jadhav
> 9920553518
>
>
> On 8 August 2014 16:19, Mihai Ghilea  wrote:
>
>>  Try this...
>>
>>
>>
>> Mihai Ghilea
>>
>> Network administrator
>>
>>  [image: Sigla_METABRAS_STEEL_PEOPLEmica]
>>
>> ROMANIA
>>
>> SC METABRAS SRL Brasov
>>
>> Str. Grivitei A44, RO 500182
>>
>> CUI: RO6340028
>>
>> RC: J08/2507/1994
>>
>> CS: 2.840.000 RON
>>
>> T:   +40 (0)268 407 410 / 143
>>
>> F:   +40 (0)268 407 426
>>
>> M:  +40 (0)728 994 113
>>
>> E: mihai.ghi...@metabras.ro 
>>
>> W: www.metabras.ro; http://fierforjat.metabras.ro
>>
>> *P* *Think green!**. Do you really need to print this email?*
>>
>>
>>
>> *From:* excel-macros@googlegroups.com [mailto:
>> excel-macros@googlegroups.com] *On Behalf Of *Lieke Van Klink
>> *Sent:* Friday, August 08, 2014 1:00 PM
>> *To:* excel-macros@googlegroups.com
>> *Subject:* $$Excel-Macros$$ need help!!!
>>
>>
>>
>> Hy guys!
>>
>> I am a student from holland, doing my thesis. and i need some help with
>> excel (i never had to use it before, so have no clue on how it works, tried
>> so much already and am still failing, regular sites do not help at all)
>> I am trying to convert my time notation: min,sec ex. 23,54 into a mm:ss
>> notation. but all i try Excel turns it into an hh:mm:ss notation as
>> follows: 23:54:00 where it is supposed to be 00:23:54
>> How do i correct this? (NOTE first notation has comma! thats where the
>> issue starts)
>>
>> the goal here is to convert the first notation: mm,sec into all seconds
>> so for example: 4,33 becomes 4*60=240, 240+33=273 sec. (if there is an
>> easier way of transforming that firat notation into omly seconds pleas
>> telle me?!!!
>> Im desperate, its for my thesis and I am so stuck on this.
>>
>> I hope someone of you is able to help me!!!
>> PS: pleas do explain it in simple minds english, this is not my first
>> language.
>>
>> If you can give met the notation that would be even better
>>
>> thanks in advance!!!
>>
>> --
>> 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, Cod

RE: $$Excel-Macros$$ need help!!!

2014-08-08 Thread Mihai Ghilea
It was an error in my first excel. This is correct.

 

Cu stima,

Mihai Ghilea

Administrator retea

 Sigla_METABRAS_STEEL_PEOPLEmica

SC METABRAS SRL Brasov

Str. Grivitei A44, RO 500182

CUI: RO6340028

RC: J08/2507/1994

CS: 2.840.000 RON

T:   +40 (0)268 407 410 / 143

F:   +40 (0)268 407 426

M:  +40 (0)728 994 113

E:   mihai.ghi...@metabras.ro

W:   www.metabras.ro;  
 http://fierforjat.metabras.ro

P Think green!. Do you really need to print this email?

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Lieke Van Klink
Sent: Friday, August 08, 2014 1:00 PM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ need help!!!

 

Hy guys!

I am a student from holland, doing my thesis. and i need some help with excel 
(i never had to use it before, so have no clue on how it works, tried so much 
already and am still failing, regular sites do not help at all)
I am trying to convert my time notation: min,sec ex. 23,54 into a mm:ss 
notation. but all i try Excel turns it into an hh:mm:ss notation as follows: 
23:54:00 where it is supposed to be 00:23:54
How do i correct this? (NOTE first notation has comma! thats where the issue 
starts)

the goal here is to convert the first notation: mm,sec into all seconds so for 
example: 4,33 becomes 4*60=240, 240+33=273 sec. (if there is an easier way of 
transforming that firat notation into omly seconds pleas telle me?!!! 
Im desperate, its for my thesis and I am so stuck on this.

I hope someone of you is able to help me!!!
PS: pleas do explain it in simple minds english, this is not my first language.

If you can give met the notation that would be even better

thanks in advance!!!

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


Seconds.xlsx
Description: MS-Excel 2007 spreadsheet


Re: $$Excel-Macros$$ need help!!!

2014-08-08 Thread Paul Schreiner
First of all, I think there's some things we both need to understand. 

There are "regional" settings in Excel that allow for some standard conventions.

For instance:  in different parts of the world, 
2 and 1/4 is represented as 2.25 or as 2,25

So, is your designation of 23,54 using a "," as a fractional representation?
or is it a text separator?

perhaps if you send me a sample file, I could answer my own question.

Next:
Excel considers "date" and "time" as a number.
The "date" is the number of days since 1/1/1900.

So, today, August 8, 2014 is 41859 days since January 1, 1900.

8:00am is 8/24 of a day, or .333
9:00am is 9/24 of a day, or .375
of course, at 12:00pm (noon), 1/2 of the day has passed, so the value is .5

By storing this as a number, excel allows us to DISPLAY that number in any 
manner we wish:

For instance, 7:15 am on  August 8, 2014 can be shown as:

Friday, August 08, 2014
8/8/2014
8/8/14
08/08/14
8-Aug
8-Aug-14
August 8, 2014
8/8/14 7:15 AM
07:15:00

All are the same NUMBER, just DISPLAYED differently.

Excel will also make some "assumptions".
Like: if you enter a value in a cell like:  00:23:54
it will ASSUME that you're entering a "time" and will convert the VALUE to
 0.01659722
then, you can change the cell formatting to DISPLAY as mm:ss
and you get 23:54 in the cell, even though the VALUE is 0.01659722

So, depending on what your number 23,54 represents, you need to decide how to 
convert it to a number.

One way would be to use Excel's time() function.
=time(hh,mm,ss) allows you to insert the string portion of the value into the 
function.

ASSUMING YOUR VALUE IS A TEXT STRING,
you need to "find" the ","
Let's say Cell A1 has 23,54
in Cell B1, you can use =find(",",A1) and determine that the "," is in location 
3.

the =MID() function allows you to pull out a portion of the string
=MID(A1,1,2) will look at the value in cell A1, from the 1st character and pull 
2 characters (one less than the location of the ","), or "23"
Now, since we don't KNOW that all your values will have a 2 digit minute value,
we need to plug in the FIND() function for the "2" value:
=MID(A1,1,FIND(",",A1)-1)

Now, to find the SECONDS, we need to START with the character AFTER the "," and 
take the next 2 characters (since there will never be more than 59 seconds)
=FIND(",",A1)+1
using MID():
=MID(A1,FIND(",",A1)+1,2)
will give you the "seconds" portion.

So, using the =time() function and substituting the two =MID() functions:

=TIME(0,MID(A1,1,FIND(",",A1)-1),MID(A1,FIND(",",A1)+1,2))

Depending on your Excel default settings, the value displayed will probably be 
in am/pm display:

12:23:AM (23 minutes, 54 seconds after midnight)

You can change the cell formatting to a "custom" format of "mm:ss"
and the time will be displayed as:

23:54

One of the largest benefits of Excel storing date/time as a number is that it 
makes calculating "elapsed time" very simple.

subtracting any two date/time values will give you the number of days and 
fraction of days between the two dates.

the difference between 
Friday, August 07, 2014 7:15 AM
Friday, August 07, 2014 3:57 PM

is 0.362500 days, or 
8:42

(which means I logged in at 7:15am and logged out at 3:57pm,
so I was at work for 8 hours and 42 minutes)

hope this helps.

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

 From: Lieke Van Klink 
>To: excel-macros@googlegroups.com 
>Sent: Friday, August 8, 2014 6:00 AM
>Subject: $$Excel-Macros$$ need help!!!
>  
>
>
>Hy guys!
>
>I am a student from holland, doing my thesis. and i need some help with excel 
>(i never had to use it before, so have no clue on how it works, tried so much 
>already and am still failing, regular sites do not help at all)
>I am trying to convert my time notation: min,sec ex. 23,54 into a mm:ss 
>notation. but all i try Excel turns it into an hh:mm:ss notation as follows: 
>23:54:00 where it is supposed to be 00:23:54
>How do i correct this? (NOTE first notation has comma! thats where the issue 
>starts)
>
>the goal here is to convert the first notation: mm,sec into all seconds so for 
>example: 4,33 becomes 4*60=240, 240+33=273 sec. (if there is an easier way of 
>transforming that firat notation into omly seconds pleas telle me?!!! 
>Im desperate, its for my thesis and I am so stuck on this.
>
>I hope someone of you is able to help me!!!
>PS: pleas do explain it in simple minds english, this is not my first language.
>
>If you can give met the notation that would be even better
>
>thanks in advance!!!
>
>
-- 
>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, 

Re: $$Excel-Macros$$ Need Help

2012-03-06 Thread NOORAIN ANSARI
Dear Kartik,

Can you share sample workbook.

On Tue, Mar 6, 2012 at 6:35 PM, karthik N  wrote:

> Kindly help me
>
> To allocate the data in macro branch wise  and every branch  shouid be
> save in  new book  ,
>
>
>
>
> Regards
> Karthik
>
> --
> 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/*

-- 
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: $$Excel-Macros$$ Need Help

2012-03-07 Thread karthik N
FYI.

Regards
karthik.N

On Wed, Mar 7, 2012 at 1:05 PM, NOORAIN ANSARI wrote:

> Dear Kartik,
>
> Can you share sample workbook.
>
> On Tue, Mar 6, 2012 at 6:35 PM, karthik N  wrote:
>
>> Kindly help me
>>
>> To allocate the data in macro branch wise  and every branch  shouid be
>> save in  new book  ,
>>
>>
>>
>>
>> Regards
>> Karthik
>>
>> --
>> 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/*
>
>
>  --
> 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*

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


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


Re: $$Excel-Macros$$ Need Help

2012-03-07 Thread NOORAIN ANSARI
Dear Kartik please use below codeand Change red color path

Sub Sheet_Creater_Deptwise()
Dim rng As Range
Dim rng1 As Range
Set rng = Sheet1.Range("G1:G" & Sheet1.Range("G65536").End(xlUp).Row)
rng.Copy Sheet1.Range("H1")
Set rng1 = Sheet1.Range("H1:H" & Sheet1.Range("H65536").End(xlUp).Row)
rng1.Select
Selection.RemoveDuplicates 1
For i = 2 To Sheet1.Cells(Rows.Count, "H").End(xlUp).Row
Sheets.Add after:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = Sheet1.Cells(i, "H")
Sheet1.Range("A1:G1").Copy Sheets(Sheets.Count).Range("A1")
c = 2
For j = 2 To Sheet1.Cells(Rows.Count, "G").End(xlUp).Row
If Sheet1.Cells(j, "G").Value = Sheet1.Cells(i, "H").Value Then
Sheets(Sheets.Count).Cells(c, 1).Value = Sheets(1).Cells(j, 1).Value
Sheets(Sheets.Count).Cells(c, 2).Value = Sheets(1).Cells(j, 2).Value
Sheets(Sheets.Count).Cells(c, 3).Value = Sheets(1).Cells(j, 3).Value
Sheets(Sheets.Count).Cells(c, 4).Value = Sheets(1).Cells(j, 4).Value
Sheets(Sheets.Count).Cells(c, 5).Value = Sheets(1).Cells(j, 5).Value
Sheets(Sheets.Count).Cells(c, 6).Value = Sheets(1).Cells(j, 6).Value
Sheets(Sheets.Count).Cells(c, 7).Value = Sheets(1).Cells(j, 7).Value
c = c + 1
End If
Next
Sheets(Sheets.Count).Columns.AutoFit
Next
Sheet1.Range("H:H").ClearContents
End Sub

and

Sub Workbook_Create_Deptwise()
Dim rng As Range
Dim rng1 As Range
Set rng = Sheet1.Range("G1:G" & Sheet1.Range("G65536").End(xlUp).Row)
rng.Copy Sheet1.Range("H1")
Set rng1 = Sheet1.Range("H1:H" & Sheet1.Range("H65536").End(xlUp).Row)
rng1.Select
Selection.RemoveDuplicates 1
For i = 2 To Sheet1.Cells(Rows.Count, "H").End(xlUp).Row
Workbooks.Add
ActiveWorkbook.SaveAs "D:\Noorain\" & Sheet1.Cells(i, "H") & ".xls"
Sheet1.Range("A1:G1").Copy ActiveWorkbook.Sheets(1).Range("A1")
c = 2
For j = 2 To Sheet1.Cells(Rows.Count, "G").End(xlUp).Row
If Sheet1.Cells(j, "G").Value = Sheet1.Cells(i, "H").Value Then
ActiveWorkbook.Sheets(1).Cells(c, 1).Value = Sheet1.Cells(j, 1).Value
ActiveWorkbook.Sheets(1).Cells(c, 2).Value = Sheet1.Cells(j, 2).Value
ActiveWorkbook.Sheets(1).Cells(c, 3).Value = Sheet1.Cells(j, 3).Value
ActiveWorkbook.Sheets(1).Cells(c, 4).Value = Sheet1.Cells(j, 4).Value
ActiveWorkbook.Sheets(1).Cells(c, 5).Value = Sheet1.Cells(j, 5).Value
ActiveWorkbook.Sheets(1).Cells(c, 6).Value = Sheet1.Cells(j, 6).Value
ActiveWorkbook.Sheets(1).Cells(c, 7).Value = Sheet1.Cells(j, 7).Value
c = c + 1
End If
Next
ActiveWorkbook.Sheets(1).Columns.AutoFit
ActiveWorkbook.Save
ActiveWorkbook.Close
Next
Sheet1.Range("H:H").ClearContents

End Sub

Please attached sheet.

-- 
Thanks & regards,
Noorain Ansari
 *http://noorainansari.com/*
*http://excelmacroworld.blogspot.com/*

On Wed, Mar 7, 2012 at 3:13 PM, karthik N  wrote:

> FYI.
>
> Regards
> karthik.N
>
>
> On Wed, Mar 7, 2012 at 1:05 PM, NOORAIN ANSARI 
> wrote:
>
>> Dear Kartik,
>>
>> Can you share sample workbook.
>>
>> On Tue, Mar 6, 2012 at 6:35 PM, karthik N  wrote:
>>
>>> Kindly help me
>>>
>>> To allocate the data in macro branch wise  and every branch  shouid be
>>> save in  new book  ,
>>>
>>>
>>>
>>>
>>> Regards
>>> Karthik
>>>
>>> --
>>> 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*

Re: $$Excel-Macros$$ Need Help

2012-03-07 Thread NOORAIN ANSARI
see attached sheet..

On Wed, Mar 7, 2012 at 3:12 PM, karthik N  wrote:

> Kindly help me
>
> To allocate the data in macro branch wise  and every branch  shouid be
> save in  new book  ,
>
>
> Regards,
> karthik.N
>
>  --
> 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/*

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


Copy of HELP1(Solved_Noorain).xlsm
Description: Binary data


Re: $$Excel-Macros$$ Need Help

2012-03-07 Thread karthik N
Thank You

Regards
karthik.N

On Thu, Mar 8, 2012 at 9:56 AM, NOORAIN ANSARI wrote:

> see attached sheet..
>
>
> On Wed, Mar 7, 2012 at 3:12 PM, karthik N  wrote:
>
>> Kindly help me
>>
>> To allocate the data in macro branch wise  and every branch  shouid be
>> save in  new book  ,
>>
>>
>> Regards,
>> karthik.N
>>
>>  --
>> 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/*
>
>
>  --
> 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*

-- 
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: $$Excel-Macros$$ Need help !!!

2012-04-10 Thread Rajan_Verma
Use value property instead of Text

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Mangesh Dayne
Sent: Apr/Tue/2012 10:12
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Need help !!!

 

Hi all,

 

I have created small code but it is showing error message as "Object
required".

The code is -

Sub gen()

If Sheet1.Range("A2").Value > 50 Then

Sheet1.Range("B2").Text = "You have entered the value above 50"

Else

Sheet1.Range("B2").Text = "You have entered the value below 50"

End If

End Sub

 

Whats wrong with the code. Please advice me.

 

Thanks.

 

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

-- 
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: $$Excel-Macros$$ Need help !!!

2012-04-10 Thread Mangesh Dayne
Thanks Rajan
It works so it means that
- we generally use text property in VB but in excel it takes value property.
So is there many differences in terms of property and events in excel macro
vba and simply vb ?

On Tue, Apr 10, 2012 at 10:13 PM, Rajan_Verma wrote:

> Use value property instead of Text
>
> ** **
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *Mangesh Dayne
> *Sent:* Apr/Tue/2012 10:12
> *To:* excel-macros@googlegroups.com
> *Subject:* $$Excel-Macros$$ Need help !!!
>
> ** **
>
> Hi all,
>
> ** **
>
> I have created small code but it is showing error message as "Object
> required".
>
> *The code is -*
>
> Sub gen()
>
> If Sheet1.Range("A2").Value > 50 Then
>
> Sheet1.Range("B2").Text = "You have entered the value above 50"
>
> Else
>
> Sheet1.Range("B2").Text = "You have entered the value below 50"
>
> End If
>
> End Sub
>
> ** **
>
> Whats wrong with the code. Please advice me.
>
> ** **
>
> Thanks.
>
> ** **
>
> 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
>
> --
> 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: $$Excel-Macros$$ Need help !!!

2012-04-10 Thread Rajan_Verma
I think Text is a read only property here

 

Rajan.

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Mangesh Dayne
Sent: Apr/Tue/2012 10:16
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Need help !!!

 

Thanks Rajan

It works so it means that 

- we generally use text property in VB but in excel it takes value property.

So is there many differences in terms of property and events in excel macro
vba and simply vb ?

On Tue, Apr 10, 2012 at 10:13 PM, Rajan_Verma 
wrote:

Use value property instead of Text

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Mangesh Dayne
Sent: Apr/Tue/2012 10:12
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Need help !!!

 

Hi all,

 

I have created small code but it is showing error message as "Object
required".

The code is -

Sub gen()

If Sheet1.Range("A2").Value > 50 Then

Sheet1.Range("B2").Text = "You have entered the value above 50"

Else

Sheet1.Range("B2").Text = "You have entered the value below 50"

End If

End Sub

 

Whats wrong with the code. Please advice me.

 

Thanks.

 

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

-- 
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: $$Excel-Macros$$ Need help !!!

2012-04-10 Thread Mangesh Dayne
Ok.

Thanks rajan.

On Tue, Apr 10, 2012 at 10:17 PM, Rajan_Verma wrote:

> I think Text is a read only property here
>
> ** **
>
> Rajan.
>
> ** **
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *Mangesh Dayne
> *Sent:* Apr/Tue/2012 10:16
> *To:* excel-macros@googlegroups.com
> *Subject:* Re: $$Excel-Macros$$ Need help !!!
>
> ** **
>
> Thanks Rajan
>
> It works so it means that 
>
> - we generally use text property in VB but in excel it takes value
> property.
>
> So is there many differences in terms of property and events in excel
> macro vba and simply vb ?
>
> On Tue, Apr 10, 2012 at 10:13 PM, Rajan_Verma 
> wrote:
>
> Use value property instead of Text
>
>  
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *Mangesh Dayne
> *Sent:* Apr/Tue/2012 10:12
> *To:* excel-macros@googlegroups.com
> *Subject:* $$Excel-Macros$$ Need help !!!
>
>  
>
> Hi all,
>
>  
>
> I have created small code but it is showing error message as "Object
> required".
>
> *The code is -*
>
> Sub gen()
>
> If Sheet1.Range("A2").Value > 50 Then
>
> Sheet1.Range("B2").Text = "You have entered the value above 50"
>
> Else
>
> Sheet1.Range("B2").Text = "You have entered the value below 50"
>
> End If
>
> End Sub
>
>  
>
> Whats wrong with the code. Please advice me.
>
>  
>
> Thanks.
>
>  
>
> 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
>
> --
> 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

Re: $$Excel-Macros$$ Need help

2012-04-18 Thread Krishnaraddi
Hi Experts, I have attached the sheet with question. I require formula which 
will give number to repeat 11 times and 12th numer should be next serial number 
which should reeat again 11 times.Dear excelmacros! Get Yourself a cool, short 
@in.com Email ID now!

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


Book1.xls
Description: MS-Word document


Re: $$Excel-Macros$$ Need help

2012-04-18 Thread Maries
Hi,

Try this formula,

=CEILING(ROW()/11,1)

On Wed, Apr 18, 2012 at 1:36 AM, Krishnaraddi  wrote:

>
>  Hi Experts,
>
> I have attached the sheet with question. I require formula which will give
> number to repeat 11 times and 12th numer should be next serial number which
> should reeat again 11 times.
>
>
>
> Dear *excel-macros!* Get Yourself a cool, short *@in.com* Email ID 
> now!
>
> --
> 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


11.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Need help

2012-04-18 Thread NOORAIN ANSARI
Dear Krishnaraddi,

Please try it..

=IFERROR(OFFSET(A2,-12,0)+1,1)


-- 
Thanks & regards,
Noorain Ansari
 *http://noorainansari.com/*
*http://excelmacroworld.blogspot.com/*

On Wed, Apr 18, 2012 at 2:06 PM, Krishnaraddi  wrote:

>
>  Hi Experts,
>
> I have attached the sheet with question. I require formula which will give
> number to repeat 11 times and 12th numer should be next serial number which
> should reeat again 11 times.
>
>
>
> Dear *excel-macros!* Get Yourself a cool, short *@in.com* Email ID 
> now!
>
> --
> 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


Excel Test(Solved).xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Need help

2012-04-18 Thread dguillett1
How about a nice macro instead
Sub incrementnumbersSAS()
fn = 1
Ln = 3 ‘last number to increment
fr = 11
For i = 1 To Ln * fr Step fr
Cells(i, "b").Resize(fr) = fn
'MsgBox i
fn = fn + 1
Next i
End Sub

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguille...@gmail.com

From: Krishnaraddi 
Sent: Wednesday, April 18, 2012 3:36 AM
To: excel-macros@googlegroups.com 
Subject: Re: $$Excel-Macros$$ Need help



  Hi Experts,

  I have attached the sheet with question. I require formula which will give 
number to repeat 11 times and 12th numer should be next serial number which 
should reeat again 11 times.




Dear excel-macros! Get Yourself a cool, short @in.com Email ID now!
-- 
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: $$Excel-Macros$$ Need help

2012-04-18 Thread Rajan_Verma
Fill A1:A11 =1 then put  formula in A12 = A1+1 and Drag

 

 

Rajan.

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of dguillett1
Sent: Apr/Wed/2012 06:14
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Need help

 

How about a nice macro instead

Sub incrementnumbersSAS()

fn = 1

Ln = 3 'last number to increment

fr = 11

For i = 1 To Ln * fr Step fr

Cells(i, "b").Resize(fr) = fn

'MsgBox i

fn = fn + 1

Next i

End Sub

 

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguille...@gmail.com

 

From: Krishnaraddi <mailto:excelkris...@in.com>  

Sent: Wednesday, April 18, 2012 3:36 AM

To: excel-macros@googlegroups.com 

Subject: Re: $$Excel-Macros$$ Need help

 

 

Hi Experts,

I have attached the sheet with question. I require formula which will give
number to repeat 11 times and 12th numer should be next serial number which
should reeat again 11 times.

 

 
<http://www3.in.com/sso/commonregister.php?ref=IN&utm_source=invite&utm_medi
um=outgoing> Dear excel-macros! Get Yourself a cool, short @in.com Email ID
now!

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

2012-04-18 Thread NOORAIN ANSARI
Dear Krishna,

You can also try
=INT((ROW()-1)/11)+1

On Wed, Apr 18, 2012 at 2:06 PM, Krishnaraddi  wrote:

>
>  Hi Experts,
>
> I have attached the sheet with question. I require formula which will give
> number to repeat 11 times and 12th numer should be next serial number which
> should reeat again 11 times.
>
>
>
> Dear *excel-macros!* Get Yourself a cool, short *@in.com* Email ID 
> now!
>
> --
> 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/*

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

2012-04-20 Thread sushil kumar
Hello All Expert,Can anyone give me any template or suggestion

On Fri, Apr 20, 2012 at 10:41 AM, sushil kumar 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


Re: $$Excel-Macros$$ Need help

2012-04-20 Thread Dileep Kumar
Try Using Workbook Sharing.. in Maped Network Drive...

On Fri, Apr 20, 2012 at 12:54 PM, sushil kumar wrote:

> Hello All Expert,Can anyone give me any template or suggestion
>
>
> On Fri, Apr 20, 2012 at 10:41 AM, sushil kumar 
> 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


Re: $$Excel-Macros$$ Need Help

2012-06-07 Thread Mangesh Dayne
Hi friends, pls do needful. Thanks. Mangesh. [sent frm phone]

On 6/7/12, Mangesh Dayne  wrote:
> Hi Friends,
>
> Please find the attached sheet and for this, I need average for the pivot
> table.
> Also explain me procedure.
>
> Thanks
>
>
> 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: $$Excel-Macros$$ Need Help

2012-06-07 Thread NOORAIN ANSARI
Dear Mangesh,

Goto to Excel Option-Fomula-Uncheck Use GetPivot Data function

Then use in B8

*=AVERAGE(B3:B6)*


-- 
Thanks & regards,
Noorain Ansari
www.noorainansari.com
www.excelmacroworld.blogspot.com

On Thu, Jun 7, 2012 at 11:01 PM, Mangesh Dayne wrote:

> Hi Friends,
>
> Please find the attached sheet and for this, I need average for the pivot
> table.
> Also explain me procedure.
>
> Thanks
>
>
> 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: $$Excel-Macros$$ Need Help

2012-06-10 Thread Indrajit $nai
*@Noorain, is this option available in MS Excel 2007? If yes, then can you
please send a snapshot for exact location, because I am not getting this
option in my MS Excel 2007.*



On Fri, Jun 8, 2012 at 7:24 AM, NOORAIN ANSARI wrote:

> Dear Mangesh,
>
> Goto to Excel Option-Fomula-Uncheck Use GetPivot Data function
>
> Then use in B8
>
> *=AVERAGE(B3:B6)*
>
>
> --
> Thanks & regards,
> Noorain Ansari
> www.noorainansari.com
> www.excelmacroworld.blogspot.com
>
> On Thu, Jun 7, 2012 at 11:01 PM, Mangesh Dayne wrote:
>
>> Hi Friends,
>>
>> Please find the attached sheet and for this, I need average for the pivot
>> table.
>> Also explain me procedure.
>>
>> Thanks
>>
>>
>> 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
>



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

-- 
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: $$Excel-Macros$$ Need Help

2012-06-11 Thread Indrajit $nai
*@ Noorain, thanks dear, thanks a lot. :)*


On Mon, Jun 11, 2012 at 2:15 PM, NOORAIN ANSARI wrote:

> Dear Indrajit,
>
> Please find attached Snapshot.
>
>
>
>
> --
> Thanks & regards,
> Noorain Ansari
> www.noorainansari.com
> www.excelmacroworld.blogspot.com
>
> On Mon, Jun 11, 2012 at 9:40 AM, Indrajit $nai wrote:
>
>> *@Noorain, is this option available in MS Excel 2007? If yes, then can
>> you please send a snapshot for exact location, because I am not getting
>> this option in my MS Excel 2007.*
>>
>>
>>
>>
>> On Fri, Jun 8, 2012 at 7:24 AM, NOORAIN ANSARI 
>> wrote:
>>
>>> Dear Mangesh,
>>>
>>> Goto to Excel Option-Fomula-Uncheck Use GetPivot Data function
>>>
>>> Then use in B8
>>>
>>> *=AVERAGE(B3:B6)*
>>>
>>>
>>> --
>>> Thanks & regards,
>>> Noorain Ansari
>>> www.noorainansari.com
>>> www.excelmacroworld.blogspot.com
>>>
>>> On Thu, Jun 7, 2012 at 11:01 PM, Mangesh Dayne 
>>> wrote:
>>>
 Hi Friends,

 Please find the attached sheet and for this, I need average for the
 pivot table.
 Also explain me procedure.

 Thanks


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

Re: $$Excel-Macros$$ Need Help

2010-02-06 Thread ayush jain
Dear Imran,

Attached is the solution. Use MID function to separate the Text in different
cells.
Let us know if any further help is required.

Best regards,
Ayush Jain


On Sun, Feb 7, 2010 at 10:40 AM, Imran khan  wrote:

> Dear Friends,
>
> Please help me for solution of attached file. I am stuck now and need your
> help on this regard.
>
> Thanks,
>
> Imran Khan
>
>
>
>  --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
> http://www.excelitems.com
> 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
> If you find any spam message in the group, please send an email to:
> Ayush Jain @ jainayus...@gmail.com
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,700 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Need Soluntion_imran.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Need Help

2010-02-06 Thread ayush jain
You are most welcome :)

On Sun, Feb 7, 2010 at 11:53 AM, Imran khan  wrote:

> Thanks Ayush,
>
> This will help me lot and save my time also.
>
> Thanks a lot once again! you guys and Dilip are doing great job which is
> appreciated.
>
> Imran
>
>
>
> On Sun, Feb 7, 2010 at 8:54 AM, ayush jain  wrote:
>
>> Dear Imran,
>>
>> Attached is the solution. Use MID function to separate the Text in
>> different cells.
>> Let us know if any further help is required.
>>
>> Best regards,
>> Ayush Jain
>>
>>
>> On Sun, Feb 7, 2010 at 10:40 AM, Imran khan  wrote:
>>
>>> Dear Friends,
>>>
>>> Please help me for solution of attached file. I am stuck now and need
>>> your help on this regard.
>>>
>>> Thanks,
>>>
>>> Imran Khan
>>>
>>>
>>>
>>> --
>>>
>>> --
>>> Some important links for excel users:
>>> 1. Follow us on TWITTER for tips tricks and links :
>>> http://twitter.com/exceldailytip
>>> 2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
>>> http://www.excelitems.com
>>> 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
>>> If you find any spam message in the group, please send an email to:
>>> Ayush Jain @ jainayus...@gmail.com
>>> <><><><><><><><><><><><><><><><><><><><><><>
>>> HELP US GROW !!
>>>
>>> We reach over 6,700 subscribers worldwide and receive many nice notes
>>> about the learning and support from the group.Let friends and co-workers
>>> know they can subscribe to group at
>>> http://groups.google.com/group/excel-macros/subscribe
>>>
>>
>>
>
>
>
>

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-02-06 Thread Imran khan
Thanks Ayush,

This will help me lot and save my time also.

Thanks a lot once again! you guys and Dilip are doing great job which is
appreciated.

Imran



On Sun, Feb 7, 2010 at 8:54 AM, ayush jain  wrote:

> Dear Imran,
>
> Attached is the solution. Use MID function to separate the Text in
> different cells.
> Let us know if any further help is required.
>
> Best regards,
> Ayush Jain
>
>
> On Sun, Feb 7, 2010 at 10:40 AM, Imran khan  wrote:
>
>> Dear Friends,
>>
>> Please help me for solution of attached file. I am stuck now and need your
>> help on this regard.
>>
>> Thanks,
>>
>> Imran Khan
>>
>>
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Follow us on TWITTER for tips tricks and links :
>> http://twitter.com/exceldailytip
>> 2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
>> http://www.excelitems.com
>> 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
>> If you find any spam message in the group, please send an email to:
>> Ayush Jain @ jainayus...@gmail.com
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,700 subscribers worldwide and receive many nice notes
>> about the learning and support from the group.Let friends and co-workers
>> know they can subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>
>

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-02-07 Thread Sanjoy Nath
Dear Imran
   Select A3 to A9   Data-> Text to Column-> Delimited-> other-> choose
underscore and that will solve the issue.


Sanjoy

On Sun, Feb 7, 2010 at 10:40 AM, Imran khan  wrote:

> Dear Friends,
>
> Please help me for solution of attached file. I am stuck now and need your
> help on this regard.
>
> Thanks,
>
> Imran Khan
>
>
>
>   --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
> http://www.excelitems.com
> 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
> If you find any spam message in the group, please send an email to:
> Ayush Jain @ jainayus...@gmail.com
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,700 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>



-- 
Your Sincerely
Sanjoy Nath
Engineer
EOL Gurgaon
EOL/M/NZ/Engg.Dept.(Haryana Division)

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


RE: $$Excel-Macros$$ Need Help

2010-02-08 Thread C.G.Kumar
 

 

 

Regards,

 

C.G.Kumar

AMW-2

To: Imran ,

 

 

Please find attached Solution file . Hope it serves your purpose.

 

Regards,

 

C.G.Kumar

 

 

 

 

 

From: excel-macros@googlegroups.com [mailto:excel-mac...@googlegroups.com]
On Behalf Of Imran khan
Sent: 07/February/2010 10:40 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Need Help

 

Dear Friends,

 

Please help me for solution of attached file. I am stuck now and need your
help on this regard.

 

Thanks,

 

Imran Khan




-- 

--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!
 
We reach over 6,700 subscribers worldwide and receive many nice notes about
the learning and support from the group.Let friends and co-workers know they
can subscribe to group at
http://groups.google.com/group/excel-macros/subscribe

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Soluntion_Imran_By C.G.Kumar.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Need Help

2010-02-10 Thread Paul Schreiner
Shiv,

Are you doing homework for a class?
or working on someone else's code?
or reading a book?

the use of [ ] is called "relative addressing"
or using "Relative Addresses"

so.. (r[-5]c:r[-1]c)
is a range in the CURRENT column (c)
and starting 5 rows above to 1 row above the designated cell

So, ActiveCell is the currently "Active" Cell.
Keep in mind that if you "select" a range of cells, the first is considered 
"active".
Selection.rows.count is the count of currently selected rows.

Activecell.offset(selection.rows.count) identifies the cell in  the same column
as the "Active" cell, but below the last row. (an "offset" of "count" rows)
 (if you have rows 5-10 selected, you actually have 6 rows selected. 
  the Active cell is in row 5, moving down 6 rows takes you to row 11)

In this cell, insert the string:

"=sum(r[-"

followed by the count of rows, followed by "]c:r[-1]c)"

now, in my above example of 6 rows in column A,
you're inserting into A11, r[-6] is row 5, the current column is "A"
r[-1] is row 10, so the formula evaluates to: "=sum(A5:A10)"

the line:
Selection.Resize(Selection.Rows.Count + 1).Select
changes the selected range to include the new row.

Paul





From: Shiv Goel 
To: excel-macros@googlegroups.com
Sent: Wed, February 10, 2010 12:53:42 AM
Subject: $$Excel-Macros$$ Need Help


Sub SumCol()
 ActiveCell.Offset(Selection.Rows.Count).Value = _
 "=sum(r[-" & Selection.Rows.Count & "]c:r[-1]c)"
 Selection.Resize(Selection.Rows.Count + 1).Select
End Sub


What is the meaning of this code

-- 
Shiv Goel
8NBYN060
ICFAI National College,YNR
9416275776
-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!
 
We reach over 6,700 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
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
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-02-23 Thread Abhishek Jain
Once you change the mode of calculation in any file, Excel will use the same
mode for all workbook opened subsequently.

Have you tried changing the mode with opening a new blank workbook ?

If you want to set automatic mode for a specific workbook as default you can
use the following code in ThisWorkbook -

Private Sub Workbook_Open()
   Application.Calculation = xlCalculationAutomatic
End Sub

Hope this helps.

Cheers!

AJ




On Tue, Feb 23, 2010 at 10:27 AM, vidyut more  wrote:

> I have excel file. Its calculation in option  always go Manual from
> automatic mode. So all calculation to be made manually. any solution.
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our Facebook Group @
> http://www.facebook.com/group.php?gid=287779555678
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ need help

2010-03-20 Thread yogananda muthaiah
Hi,

Kindly specify your requirements for automating the reports.


Regards
Yogananda.Muthaiah
Ph : 9731237267

On 3/19/10, Shilpa Rao  wrote:
> Hi,
>
> Do we have any tools to automate financial reports?
>
>
>
> --
> Regards,
> Shilpa
>
> --
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our Facebook Group @
> http://www.facebook.com/group.php?gid=287779555678
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>
> To unsubscribe from this group, send email to
> excel-macros+unsubscribegooglegroups.com or reply to this email with the
> words "REMOVE ME" as the subject.
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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

To unsubscribe from this group, send email to 
excel-macros+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


Re: $$Excel-Macros$$ need help

2010-03-31 Thread Shilpa Rao
HI
any automation tools getting graphs in excel or any other automation tools
in excel to get report or any free softwares to get report automated.


On Sat, Mar 20, 2010 at 2:47 PM, yogananda muthaiah <
yogananda.mutha...@gmail.com> wrote:

> Hi,
>
> Kindly specify your requirements for automating the reports.
>
>
> Regards
> Yogananda.Muthaiah
> Ph : 9731237267
>
> On 3/19/10, Shilpa Rao  wrote:
> > Hi,
> >
> > Do we have any tools to automate financial reports?
> >
> >
> >
> > --
> > Regards,
> > Shilpa
> >
> > --
> >
> --
> > Some important links for excel users:
> > 1. Follow us on TWITTER for tips tricks and links :
> > http://twitter.com/exceldailytip
> > 2. Join our Facebook Group @
> > http://www.facebook.com/group.php?gid=287779555678
> > 3. Excel tutorials at http://www.excel-macros.blogspot.com
> > 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> > 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
> >
> > To post to this group, send email to excel-macros@googlegroups.com
> >
> > <><><><><><><><><><><><><><><><><><><><><><>
> > HELP US GROW !!
> >
> > We reach over 6,800 subscribers worldwide and receive many nice notes
> about
> > the learning and support from the group.Let friends and co-workers know
> they
> > can subscribe to group at
> > http://groups.google.com/group/excel-macros/subscribe
> >
> > To unsubscribe from this group, send email to
> > excel-macros+unsubscribegooglegroups.com or reply to this email with the
> > words "REMOVE ME" as the subject.
> >
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our Facebook Group @
> http://www.facebook.com/group.php?gid=287779555678
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>
> To unsubscribe from this group, send email to excel-macros+
> unsubscribegooglegroups.com or reply to this email with the words "REMOVE
> ME" as the subject.
>



-- 
Regards,
Shilpa

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ need help

2010-04-01 Thread Dipika Mallya
yes. what do you want to automate.

On Wed, Mar 31, 2010 at 11:47 PM, Shilpa Rao  wrote:

> HI
> any automation tools getting graphs in excel or any other automation tools
> in excel to get report or any free softwares to get report automated.
>
>
> On Sat, Mar 20, 2010 at 2:47 PM, yogananda muthaiah <
> yogananda.mutha...@gmail.com> wrote:
>
>> Hi,
>>
>> Kindly specify your requirements for automating the reports.
>>
>>
>> Regards
>> Yogananda.Muthaiah
>> Ph : 9731237267
>>
>> On 3/19/10, Shilpa Rao  wrote:
>> > Hi,
>> >
>> > Do we have any tools to automate financial reports?
>> >
>> >
>> >
>> > --
>> > Regards,
>> > Shilpa
>> >
>> > --
>> >
>> --
>> > Some important links for excel users:
>> > 1. Follow us on TWITTER for tips tricks and links :
>> > http://twitter.com/exceldailytip
>> > 2. Join our Facebook Group @
>> > http://www.facebook.com/group.php?gid=287779555678
>> > 3. Excel tutorials at http://www.excel-macros.blogspot.com
>> > 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>> > 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>> >
>> > To post to this group, send email to excel-macros@googlegroups.com
>> >
>> > <><><><><><><><><><><><><><><><><><><><><><>
>> > HELP US GROW !!
>> >
>> > We reach over 6,800 subscribers worldwide and receive many nice notes
>> about
>> > the learning and support from the group.Let friends and co-workers know
>> they
>> > can subscribe to group at
>> > http://groups.google.com/group/excel-macros/subscribe
>> >
>> > To unsubscribe from this group, send email to
>> > excel-macros+unsubscribegooglegroups.com or reply to this email with
>> the
>> > words "REMOVE ME" as the subject.
>> >
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Follow us on TWITTER for tips tricks and links :
>> http://twitter.com/exceldailytip
>> 2. Join our Facebook Group @
>> http://www.facebook.com/group.php?gid=287779555678
>> 3. Excel tutorials at http://www.excel-macros.blogspot.com
>> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>>
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,800 subscribers worldwide and receive many nice notes
>> about the learning and support from the group.Let friends and co-workers
>> know they can subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>> To unsubscribe from this group, send email to excel-macros+
>> unsubscribegooglegroups.com or reply to this email with the words "REMOVE
>> ME" as the subject.
>>
>
>
>
> --
>  Regards,
> Shilpa
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our Facebook Group @
> http://www.facebook.com/group.php?gid=287779555678
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ need help

2010-04-01 Thread rf1234 rf1234
Hello Dear
You can automate your excel workbook,according to need u can write code.
If you are new then you can try to download from net.


Some of the example are available here.
http://www.excel-business-solutions.com/free_download.htm


Please have a view of files,template which are uploaded by admin.






Hope it Will Help
Happy To Help
:)
Shyam






On Thu, Apr 1, 2010 at 4:51 PM, Dipika Mallya  wrote:
> yes. what do you want to automate.
>
> On Wed, Mar 31, 2010 at 11:47 PM, Shilpa Rao  wrote:
>>
>> HI
>> any automation tools getting graphs in excel or any other automation tools
>> in excel to get report or any free softwares to get report automated.
>>
>> On Sat, Mar 20, 2010 at 2:47 PM, yogananda muthaiah
>>  wrote:
>>>
>>> Hi,
>>>
>>> Kindly specify your requirements for automating the reports.
>>>
>>>
>>> Regards
>>> Yogananda.Muthaiah
>>> Ph : 9731237267
>>>
>>> On 3/19/10, Shilpa Rao  wrote:
>>> > Hi,
>>> >
>>> > Do we have any tools to automate financial reports?
>>> >
>>> >
>>> >
>>> > --
>>> > Regards,
>>> > Shilpa
>>> >
>>> > --
>>> >
>>> > --
>>> > Some important links for excel users:
>>> > 1. Follow us on TWITTER for tips tricks and links :
>>> > http://twitter.com/exceldailytip
>>> > 2. Join our Facebook Group @
>>> > http://www.facebook.com/group.php?gid=287779555678
>>> > 3. Excel tutorials at http://www.excel-macros.blogspot.com
>>> > 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>>> > 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>> >
>>> > To post to this group, send email to excel-macros@googlegroups.com
>>> >
>>> > <><><><><><><><><><><><><><><><><><><><><><>
>>> > HELP US GROW !!
>>> >
>>> > We reach over 6,800 subscribers worldwide and receive many nice notes
>>> > about
>>> > the learning and support from the group.Let friends and co-workers know
>>> > they
>>> > can subscribe to group at
>>> > http://groups.google.com/group/excel-macros/subscribe
>>> >
>>> > To unsubscribe from this group, send email to
>>> > excel-macros+unsubscribegooglegroups.com or reply to this email with
>>> > the
>>> > words "REMOVE ME" as the subject.
>>> >
>>>
>>> --
>>>
>>> --
>>> Some important links for excel users:
>>> 1. Follow us on TWITTER for tips tricks and links :
>>> http://twitter.com/exceldailytip
>>> 2. Join our Facebook Group @
>>> http://www.facebook.com/group.php?gid=287779555678
>>> 3. Excel tutorials at http://www.excel-macros.blogspot.com
>>> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>>> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>>
>>> To post to this group, send email to excel-macros@googlegroups.com
>>>
>>> <><><><><><><><><><><><><><><><><><><><><><>
>>> HELP US GROW !!
>>>
>>> We reach over 6,800 subscribers worldwide and receive many nice notes
>>> about the learning and support from the group.Let friends and co-workers
>>> know they can subscribe to group at
>>> http://groups.google.com/group/excel-macros/subscribe
>>>
>>> To unsubscribe from this group, send email to
>>> excel-macros+unsubscribegooglegroups.com or reply to this email with the
>>> words "REMOVE ME" as the subject.
>>
>>
>>
>> --
>> Regards,
>> Shilpa
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Follow us on TWITTER for tips tricks and links :
>> http://twitter.com/exceldailytip
>> 2. Join our Facebook Group @
>> http://www.facebook.com/group.php?gid=287779555678
>> 3. Excel tutorials at http://www.excel-macros.blogspot.com
>> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>>
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,800 subscribers worldwide and receive many nice notes
>> about the learning and support from the group.Let friends and co-workers
>> know they can subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>
> --
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our Facebook Group @
> http://www.facebook.com/group.php?gid=287779555678
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers kn

Re: $$Excel-Macros$$ Need Help

2010-04-28 Thread Ahmedhonest
Dear Balbir,

Copy the column values and in the destination wile pasting give it Paste
Special - in paste special choose "Transpose" your task will be done.

Let me know if you still need in detail the steps.

This should solve your query

On Wed, Apr 28, 2010 at 2:50 PM, balbirkumar .  wrote:

> Dear Friends,
>
>
> I want to arrange the series of data in a coloum to series of row. For
> example
>
>  Data is available in the following Format:
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>
>
>
>
>
>
>  2
>
>  Rat
>
>
>
>
>
>
>
>  3
>
>  Dog
>
>
>
>
>
>
>
>  4
>
>  Lion
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Want to arrange the data as :
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>  Rat
>
>  Dog
>
>  Lion
>
>  2
>
>
>
>
>
>
>
>
>
>  3
>
>
>
>
>
>
>
>
>
>  4
>
>
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Please advice friends.
>
>
> Thanks in Advance.
>
> --
> Balbir Kumar
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>



-- 
Ahmed Bawazir

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-04-28 Thread worawat kh
Hi ,

 You just copy on range a1:a4 and click on other blank cell then right click
and select paste special ,
select value and transpose it can arrange series as you want.

pls note that it can not paste on cell a1 because it was same cell that be
copied.


Hope it can help you.
Worawat

2010/4/28 balbirkumar . 

> Dear Friends,
>
>
> I want to arrange the series of data in a coloum to series of row. For
> example
>
> Data is available in the following Format:
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>
>
>
>
>
>
>  2
>
>  Rat
>
>
>
>
>
>
>
>  3
>
>  Dog
>
>
>
>
>
>
>
>  4
>
>  Lion
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Want to arrange the data as :
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>  Rat
>
>  Dog
>
>  Lion
>
>  2
>
>
>
>
>
>
>
>
>
>  3
>
>
>
>
>
>
>
>
>
>  4
>
>
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Please advice friends.
>
>
> Thanks in Advance.
>
> --
> Balbir Kumar
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>



-- 
Moo Moo'
MyBlog
http://ExcelBeginner.BlogSpot.Com  >>> Excel Tip
http://MySTTAtrtip.BlogSpot.Com >>>My trip picture

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-04-28 Thread André D'Avila
One way you can do is select and copy A1:A4 for exemple and click and
A1 paste special -> Transpose, its in the left corner down, of copy special
box.
Try there.

Lately you can create a macro that do this for you
Best Regards

André Luiz D´Avila
2010/4/28 balbirkumar . 

> Dear Friends,
>
>
> I want to arrange the series of data in a coloum to series of row. For
> example
>
>  Data is available in the following Format:
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>
>
>
>
>
>
>  2
>
>  Rat
>
>
>
>
>
>
>
>  3
>
>  Dog
>
>
>
>
>
>
>
>  4
>
>  Lion
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Want to arrange the data as :
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>  Rat
>
>  Dog
>
>  Lion
>
>  2
>
>
>
>
>
>
>
>
>
>  3
>
>
>
>
>
>
>
>
>
>  4
>
>
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Please advice friends.
>
>
> Thanks in Advance.
>
> --
> Balbir Kumar
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-04-29 Thread Dilip Pandey
Dear Balbir,

copy the respective data and press popup key in your keyboard, then s then e
and press Enter.

(copy->paste special-> tanspose > Enter) :)

Pivot table is also a good option to give a try.

-- 
Thanks & Regards,

DILIP KUMAR PANDEY
 MBA-HR,B.Com(Hons),BCA
Mobile: +91 9810929744
dilipan...@gmail.com
dilipan...@yahoo.com
New Delhi - 62, India


On Wed, Apr 28, 2010 at 5:20 PM, balbirkumar .  wrote:

> Dear Friends,
>
>
> I want to arrange the series of data in a coloum to series of row. For
> example
>
>  Data is available in the following Format:
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>
>
>
>
>
>
>  2
>
>  Rat
>
>
>
>
>
>
>
>  3
>
>  Dog
>
>
>
>
>
>
>
>  4
>
>  Lion
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Want to arrange the data as :
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>  Rat
>
>  Dog
>
>  Lion
>
>  2
>
>
>
>
>
>
>
>
>
>  3
>
>
>
>
>
>
>
>
>
>  4
>
>
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Please advice friends.
>
>
> Thanks in Advance.
>
> --
> Balbir Kumar
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-04-29 Thread Ankit Agarwal
USe transpose...

Select from A1 to A4,,,--> Copy...--> Select cell A1 and then right
clickuse paste special...check transpose and then press ok

On Thu, Apr 29, 2010 at 10:53 AM, rf1234 rf1234  wrote:

> Hello Dear,
> Have a look on attached Vedio.
>
>
>
>
>
>
>
>
> On Wed, Apr 28, 2010 at 5:20 PM, balbirkumar . wrote:
>
>> Dear Friends,
>>
>>
>> I want to arrange the series of data in a coloum to series of row. For
>> example
>>
>>  Data is available in the following Format:
>>
>>  A
>>
>> B
>>
>> C
>>
>> D
>>
>>  1
>>
>>  Cat
>>
>>
>>
>>
>>
>>
>>
>>  2
>>
>>  Rat
>>
>>
>>
>>
>>
>>
>>
>>  3
>>
>>  Dog
>>
>>
>>
>>
>>
>>
>>
>>  4
>>
>>  Lion
>>
>>
>>
>>
>>
>>
>>
>>  5
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> Want to arrange the data as :
>>
>>  A
>>
>> B
>>
>> C
>>
>> D
>>
>>  1
>>
>>  Cat
>>
>>  Rat
>>
>>  Dog
>>
>>  Lion
>>
>>  2
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  3
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  4
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  5
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> Please advice friends.
>>
>>
>> Thanks in Advance.
>>
>> --
>> Balbir Kumar
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Follow us on TWITTER for tips tricks and links :
>> http://twitter.com/exceldailytip
>> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
>> 3. Excel tutorials at http://www.excel-macros.blogspot.com
>> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>>
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,800 subscribers worldwide and receive many nice notes
>> about the learning and support from the group.Let friends and co-workers
>> know they can subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>
>
>
> --
>
> Thanks Regards
> Shyam
> Software Engineer
>
> ''
> When one door of happiness closes, another opens;
> but often we look so long at the closed door that we do not see the
> one which has been opened for us.
> - Helen Keller
>
> ''
> Wenn eine Tür des Glücks schließt, öffnet sich ein weiteres,
> aber oft schauen wir so lange auf die geschlossene Tür,
> dass wir nicht sehen ein, die für uns geöffnet wurde. - Helen Keller
>
> ''
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-04-29 Thread balbirkumar .
thanks a lot, 4 immediate reply,,,friends

On 29 April 2010 10:53, rf1234 rf1234  wrote:

> Hello Dear,
> Have a look on attached Vedio.
>
>
>
>
>
>
>
>
> On Wed, Apr 28, 2010 at 5:20 PM, balbirkumar . wrote:
>
>> Dear Friends,
>>
>>
>> I want to arrange the series of data in a coloum to series of row. For
>> example
>>
>>  Data is available in the following Format:
>>
>>  A
>>
>> B
>>
>> C
>>
>> D
>>
>>  1
>>
>>  Cat
>>
>>
>>
>>
>>
>>
>>
>>  2
>>
>>  Rat
>>
>>
>>
>>
>>
>>
>>
>>  3
>>
>>  Dog
>>
>>
>>
>>
>>
>>
>>
>>  4
>>
>>  Lion
>>
>>
>>
>>
>>
>>
>>
>>  5
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> Want to arrange the data as :
>>
>>  A
>>
>> B
>>
>> C
>>
>> D
>>
>>  1
>>
>>  Cat
>>
>>  Rat
>>
>>  Dog
>>
>>  Lion
>>
>>  2
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  3
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  4
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>  5
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> Please advice friends.
>>
>>
>> Thanks in Advance.
>>
>> --
>> Balbir Kumar
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Follow us on TWITTER for tips tricks and links :
>> http://twitter.com/exceldailytip
>> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
>> 3. Excel tutorials at http://www.excel-macros.blogspot.com
>> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>>
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,800 subscribers worldwide and receive many nice notes
>> about the learning and support from the group.Let friends and co-workers
>> know they can subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>
>
>
> --
>
> Thanks Regards
> Shyam
> Software Engineer
>
> ''
> When one door of happiness closes, another opens;
> but often we look so long at the closed door that we do not see the
> one which has been opened for us.
> - Helen Keller
>
> ''
> Wenn eine Tür des Glücks schließt, öffnet sich ein weiteres,
> aber oft schauen wir so lange auf die geschlossene Tür,
> dass wir nicht sehen ein, die für uns geöffnet wurde. - Helen Keller
>
> ''
>



-- 
Balbir Kumar

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-04-29 Thread Naveen Sharma
copy the data of column A, right click from mouse. there is an option "paste
special". Click on it & tick on transpose, and press ok.

Naveen


On 4/28/10, balbirkumar .  wrote:
>
> Dear Friends,
>
>
>
>
> I want to arrange the series of data in a coloum to series of row. For
> example
>
>
>
> Data is available in the following Format:
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>
>
>
>
>
>
>  2
>
>  Rat
>
>
>
>
>
>
>
>  3
>
>  Dog
>
>
>
>
>
>
>
>  4
>
>  Lion
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Want to arrange the data as :
>
>  A
>
> B
>
> C
>
> D
>
>  1
>
>  Cat
>
>  Rat
>
>  Dog
>
>  Lion
>
>  2
>
>
>
>
>
>
>
>
>
>  3
>
>
>
>
>
>
>
>
>
>  4
>
>
>
>
>
>
>
>
>
>  5
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Please advice friends.
>
>
> Thanks in Advance.
>
> --
> Balbir Kumar
>
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,800 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-05-26 Thread saggi
Use those code :

Sub Combine()
Dim J As Integer

On Error Resume Next
Sheets(1).Select
Worksheets.Add ' add a sheet in first place
Sheets(1).Name = "Combined"

' copy headings
Sheets(2).Activate
Range("A1").EntireRow.Select
Selection.Copy Destination:=Sheets(1).Range("A1")

' work through sheets
For J = 2 To Sheets.Count ' from sheet 2 to last sheet
Sheets(J).Activate ' make the sheet active
Range("A1").Select
Selection.CurrentRegion.Select ' select all cells in this
sheets

' select all lines except title
Selection.Offset(1, 0).Resize(Selection.Rows.Count - 1).Select

' copy cells selected in the new sheet on last line
Selection.Copy Destination:=Sheets(1).Range("A65536").End(xlUp)
(2)
Next
End Sub


On May 24, 11:04 pm, qcan  wrote:
> Hi Group,
>
> I am not very knowledgable with VBA and would like some help solving a
> tedious problem.
>
> - I would like to copy and past each page contained on this URL into 1
> spreadsheet (copy/paste 1st 50, then go to line 51 and do the same for
> the second 50 etc etc..
>  http://contests.covers.com/Handicapping/topHandicappers.aspx?sportid=...
>
> - Each page contains 50 records.
> - Currently there are approximatly 8500 records.
>
> Currently the only way I know how to do this is to manually go to each
> page manually and copy and paste.Obviously, I would prefer something
> much more automated so that I can keep whatever remaining hair on my
> head.
>
> Many thanks.
>
> --
> ---­---
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links 
> :http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials athttp://www.excel-macros.blogspot.com
> 4. Learn VBA Macros athttp://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 7000 subscribers worldwide and receive many nice notes about 
> the learning and support from the group.Let friends and co-workers know they 
> can subscribe to group athttp://groups.google.com/group/excel-macros/subscribe

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-05-26 Thread Bill Q
Thanks for the effort Saggi. It is appreciated.

Unfortunatly, it seems that I am guilty of not being specific
enough.Here is what I need step by step:

1. We start on this URL : 
http://contests.covers.com/Handicapping/topHandicappers.aspx?sportid=1
2. This page defaults to record 1 through 50.
3. Records 1 through 50 are copied and pasted into a spreadsheet
called TEST001.XLS
4. The page "somehow" advances to the next (through code). That next
page will be from record 51 to 100.
5. That is also copy and pasted in TEST001.XLS directly beneath the
last record (in the case 50)
6. Again, code is created (a loop I guess) so that it once again goes
to the next page that contains records 101 to  151.
7. Same as step 5.
8. Etc etc until the end of records has been encountered. In this
particular case there are 18,849 records.

- You can manually advance to the next page of records by pressing on
the button controls on the ULR page near the bottom where it indicates
"or by placement".
Below is what the output should look like (from two pages only). Of
course this would be in the TEST001 spreadhseet, but I couldn't figure
out how to attach it here.

Thanks & sorry for the confusion.

1  lalito  171-112-7  60.42%  6.15  +24610  View View
2  scotty122  210-147-10  58.82%  5.56  +24150  View View
3  eaglezzz  295-225-14  56.73%  4.71  +23750  View View
4  ForecastinFloyd  165-111-7  59.78%  5.28  +21450  View View
5  RandyC726  273-210-13  56.52%  4.11  +21000  View View
6  CC95531  349-280-13  55.48%  3.78  +20500  View View
7  IWillWinItAll  209-156-7  57.26%  3.85  +18700  View View
8  redbully  227-173-11  56.75%  3.64  +18350  View View
9  Cox37  255-199-11  56.17%  3.45  +18050  View View
10  atmraydoc  212-160-7  56.99%  3.63  +18000  View View
11  bbk  130-87-5  59.91%  4.26  +17150  View View
12  DoubleA69  267-212-14  55.74%  3.16  +16900  View View
13  fatboybbq  192-150-7  56.14%  2.58  +16870  View View
14  markjsni  158-113-3  58.30%  3.74  +16850  View View
15  kosta8  165-120-6  57.89%  3.55  +16760  View View
16  sonofsamtom  264-210-11  55.70%  3.08  +16500  View View
17  cokeyjoe  343-282-14  54.88%  2.98  +16400  View View
18  jzduit2  172-127-7  57.53%  3.39  +16150  View View
19  taquitojames  196-150-7  56.65%  3.06  +15500  View View
20  Chance2005  243-193-8  55.73%  2.87  +15350  View View
21  runk5k  199-153-11  56.53%  3.01  +15350  View View
22  laoplayah  128-89-3  58.99%  3.50  +15050  View View
23  chris2515  74-40-0  64.91%  5.07  +15000  View View
24  doggystylze  134-95-4  58.52%  3.32  +14750  View View
25  norsugai  135-96-3  58.44%  3.29  +14700  View View
26  peterp  224-177-10  55.86%  2.75  +14650  View View
27  ptmclc  105-69-1  60.34%  3.72  +14550  View View
28  ALLABOUTME  273-222-11  55.15%  2.63  +14400  View View
29  americanbj27  82-49-1  62.60%  4.16  +14050  View View
30  jwstahl80  348-291-15  54.46%  2.54  +13950  View View
31  grillbee  109-74-7  59.56%  3.35  +13800  View View
32  ryanwelser  186-144-5  56.36%  2.67  +13800  View View
33  JCYeager  159-120-7  56.99%  2.73  +13560  View View
34  Daweemz04  103-70-4  59.54%  3.15  +13440  View View
35  howwierd  181-141-7  56.21%  2.48  +13420  View View
36  chuckgale  159-120-8  56.99%  2.73  +13410  View View
37  gigglez13  161-122-6  56.89%  2.69  +13400  View View
38  riba57  285-230-9  55.34%  2.94  +13360  View View
39  91Bravo  119-84-3  58.62%  3.02  +13300  View View
40  MADMAN62  142-105-7  57.49%  2.77  +13250  View View
41  johnnyboy28  252-205-12  55.14%  2.42  +13250  View View
42  luonz  119-80-5  59.80%  3.82  +13250  View View
43  djm180  88-56-2  61.11%  3.56  +13200  View View
44  Smoothie123  233-188-10  55.34%  2.40  +13100  View View
45  nicawarrior  68-38-3  64.15%  4.25  +13100  View View
46  datsyuk  81-50-2  61.83%  3.67  +13000  View View
47  WEZEWOODS69  97-65-4  59.88%  3.16  +12750  View View
48  rooster010  218-175-10  55.47%  2.35  +12750  View View
49  master_predict  101-69-2  59.41%  3.01  +12550  View View
50  haqq55  225-182-12  55.28%  2.27  +12400  View View
51  star7  73-44-5  62.39%  3.59  +12300  View View
52  mikeshelton31  130-96-3  57.52%  2.56  +12200  View View
53  jc2211  241-197-8  55.02%  2.21  +12200  View View
54  KeyboardCowboy  228-184-9  55.34%  2.35  +12200  View View
55  Mike208  143-108-5  56.97%  2.44  +12100  View View
56  DutchMaster24  88-58-4  60.27%  3.08  +12100  View View
57  SportsLady  155-119-8  56.57%  2.36  +12050  View View
58  gatorsneil75  93-63-3  59.62%  2.88  +11850  View View
59  anth611  61-34-3  64.21%  3.84  +11800  View View
60  Chaas  50-24-1  67.57%  4.57  +11800  View View
61  tamert  74-46-2  61.67%  3.27  +11700  View View
62  gruntdabeerman  110-79-3  58.20%  2.54  +11550  View View
63  SoLjA  89-60-5  59.73%  2.82  +11500  View View
64  cowgirl2k1  209-167-7  55.59%  2.35  +11490  View View
65  ADR1977  156-121-6  56.32%  2.21  +11450  View View
66  vanwilder21  92-63-3  59.35%  2.71  +11350  View View
67  dech810  83-55-4  60.

Re: $$Excel-Macros$$ Need Help

2010-05-27 Thread Vj Realsaggi
mail me xl @ ...realsa...@gmail.com

On Thu, May 27, 2010 at 7:36 AM, Bill Q  wrote:

> Thanks for the effort Saggi. It is appreciated.
>
> Unfortunatly, it seems that I am guilty of not being specific
> enough.Here is what I need step by step:
>
> 1. We start on this URL :
> http://contests.covers.com/Handicapping/topHandicappers.aspx?sportid=1
> 2. This page defaults to record 1 through 50.
> 3. Records 1 through 50 are copied and pasted into a spreadsheet
> called TEST001.XLS
> 4. The page "somehow" advances to the next (through code). That next
> page will be from record 51 to 100.
> 5. That is also copy and pasted in TEST001.XLS directly beneath the
> last record (in the case 50)
> 6. Again, code is created (a loop I guess) so that it once again goes
> to the next page that contains records 101 to  151.
> 7. Same as step 5.
> 8. Etc etc until the end of records has been encountered. In this
> particular case there are 18,849 records.
>
> - You can manually advance to the next page of records by pressing on
> the button controls on the ULR page near the bottom where it indicates
> "or by placement".
> Below is what the output should look like (from two pages only). Of
> course this would be in the TEST001 spreadhseet, but I couldn't figure
> out how to attach it here.
>
> Thanks & sorry for the confusion.
>
> 1  lalito  171-112-7  60.42%  6.15  +24610  View View
> 2  scotty122  210-147-10  58.82%  5.56  +24150  View View
> 3  eaglezzz  295-225-14  56.73%  4.71  +23750  View View
> 4  ForecastinFloyd  165-111-7  59.78%  5.28  +21450  View View
> 5  RandyC726  273-210-13  56.52%  4.11  +21000  View View
> 6  CC95531  349-280-13  55.48%  3.78  +20500  View View
> 7  IWillWinItAll  209-156-7  57.26%  3.85  +18700  View View
> 8  redbully  227-173-11  56.75%  3.64  +18350  View View
> 9  Cox37  255-199-11  56.17%  3.45  +18050  View View
> 10  atmraydoc  212-160-7  56.99%  3.63  +18000  View View
> 11  bbk  130-87-5  59.91%  4.26  +17150  View View
> 12  DoubleA69  267-212-14  55.74%  3.16  +16900  View View
> 13  fatboybbq  192-150-7  56.14%  2.58  +16870  View View
> 14  markjsni  158-113-3  58.30%  3.74  +16850  View View
> 15  kosta8  165-120-6  57.89%  3.55  +16760  View View
> 16  sonofsamtom  264-210-11  55.70%  3.08  +16500  View View
> 17  cokeyjoe  343-282-14  54.88%  2.98  +16400  View View
> 18  jzduit2  172-127-7  57.53%  3.39  +16150  View View
> 19  taquitojames  196-150-7  56.65%  3.06  +15500  View View
> 20  Chance2005  243-193-8  55.73%  2.87  +15350  View View
> 21  runk5k  199-153-11  56.53%  3.01  +15350  View View
> 22  laoplayah  128-89-3  58.99%  3.50  +15050  View View
> 23  chris2515  74-40-0  64.91%  5.07  +15000  View View
> 24  doggystylze  134-95-4  58.52%  3.32  +14750  View View
> 25  norsugai  135-96-3  58.44%  3.29  +14700  View View
> 26  peterp  224-177-10  55.86%  2.75  +14650  View View
> 27  ptmclc  105-69-1  60.34%  3.72  +14550  View View
> 28  ALLABOUTME  273-222-11  55.15%  2.63  +14400  View View
> 29  americanbj27  82-49-1  62.60%  4.16  +14050  View View
> 30  jwstahl80  348-291-15  54.46%  2.54  +13950  View View
> 31  grillbee  109-74-7  59.56%  3.35  +13800  View View
> 32  ryanwelser  186-144-5  56.36%  2.67  +13800  View View
> 33  JCYeager  159-120-7  56.99%  2.73  +13560  View View
> 34  Daweemz04  103-70-4  59.54%  3.15  +13440  View View
> 35  howwierd  181-141-7  56.21%  2.48  +13420  View View
> 36  chuckgale  159-120-8  56.99%  2.73  +13410  View View
> 37  gigglez13  161-122-6  56.89%  2.69  +13400  View View
> 38  riba57  285-230-9  55.34%  2.94  +13360  View View
> 39  91Bravo  119-84-3  58.62%  3.02  +13300  View View
> 40  MADMAN62  142-105-7  57.49%  2.77  +13250  View View
> 41  johnnyboy28  252-205-12  55.14%  2.42  +13250  View View
> 42  luonz  119-80-5  59.80%  3.82  +13250  View View
> 43  djm180  88-56-2  61.11%  3.56  +13200  View View
> 44  Smoothie123  233-188-10  55.34%  2.40  +13100  View View
> 45  nicawarrior  68-38-3  64.15%  4.25  +13100  View View
> 46  datsyuk  81-50-2  61.83%  3.67  +13000  View View
> 47  WEZEWOODS69  97-65-4  59.88%  3.16  +12750  View View
> 48  rooster010  218-175-10  55.47%  2.35  +12750  View View
> 49  master_predict  101-69-2  59.41%  3.01  +12550  View View
> 50  haqq55  225-182-12  55.28%  2.27  +12400  View View
> 51  star7  73-44-5  62.39%  3.59  +12300  View View
> 52  mikeshelton31  130-96-3  57.52%  2.56  +12200  View View
> 53  jc2211  241-197-8  55.02%  2.21  +12200  View View
> 54  KeyboardCowboy  228-184-9  55.34%  2.35  +12200  View View
> 55  Mike208  143-108-5  56.97%  2.44  +12100  View View
> 56  DutchMaster24  88-58-4  60.27%  3.08  +12100  View View
> 57  SportsLady  155-119-8  56.57%  2.36  +12050  View View
> 58  gatorsneil75  93-63-3  59.62%  2.88  +11850  View View
> 59  anth611  61-34-3  64.21%  3.84  +11800  View View
> 60  Chaas  50-24-1  67.57%  4.57  +11800  View View
> 61  tamert  74-46-2  61.67%  3.27  +11700  View View
> 62  gruntdabeerman  110-79-3  58.20%  2.54  +1

Re: $$Excel-Macros$$ Need help

2010-07-28 Thread Vasant
Do u want the data in ms-word as a paragraph ?

On 7/28/10, madha...@yahoo.com  wrote:
> Dear expert
> I have some data stored in excel sheet and I wanted to convert the same in
> paragraph form can I know how can I convert the same in paragraph form.
>
> Warm regards
>
> Madhav Vyas
> Sent on my BlackBerry® from Vodafone
>
> --
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 7000 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>


-- 
Regards

Vasant

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need help

2010-07-28 Thread madhav03
Yes sir
Sent on my BlackBerry® from Vodafone

-Original Message-
From: Vasant 
Sender: excel-macros@googlegroups.com
Date: Wed, 28 Jul 2010 15:27:53 
To: 
Reply-To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Need help

Do u want the data in ms-word as a paragraph ?

On 7/28/10, madha...@yahoo.com  wrote:
> Dear expert
> I have some data stored in excel sheet and I wanted to convert the same in
> paragraph form can I know how can I convert the same in paragraph form.
>
> Warm regards
>
> Madhav Vyas
> Sent on my BlackBerry® from Vodafone
>
> --
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 7000 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>


-- 
Regards

Vasant

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2010-08-04 Thread Aindril De
Hi I have responded to your email
sent before pl chk and see if this is what u wanted
Regards,
Andy

On Thu, Aug 5, 2010 at 9:48 AM, prabhakar thakur  wrote:

> Hi All,
> Please help.
>
> Thanks,
> Prabhakar Thakur
> New Delhi
> +919953736776
>
>
>
> On Wed, Aug 4, 2010 at 10:49 PM, prabhakar thakur <
> prabhakarthak...@gmail.com> wrote:
>
>> Dear Group,
>>   I need help to a month & year wise report, I
>> made a povit but couldn't get correct report.
>>
>>
>> --
>> Thanks,
>> Prabhakar Thakur
>> New Delhi
>> +919953736776
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Follow us on TWITTER for tips tricks and links :
>> http://twitter.com/exceldailytip
>> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
>> 3. Excel tutorials at http://www.excel-macros.blogspot.com
>> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
>> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>>
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 7000 subscribers worldwide and receive many nice notes about
>> the learning and support from the group.Let friends and co-workers know they
>> can subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>
>  --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 7000 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need help

2010-09-07 Thread anil panchal
Hi Please find the attached file.

On Tue, Sep 7, 2010 at 11:23 AM, Pankaj Kumar wrote:

> Hi all i have a excel sheet need help, i wanted to use excel formula not
> pivot table or chat
>
> --
>  *Warm Regards
> Pankaj kumar
> M: 9899816107
> e-mail: rajputpanka...@gmail.com
>rajputpank...@yahoo.in*
> *   rajputpankaj1...@rediffmail.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
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 7000 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


new & Carry forward entries monthwise(1).xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Need help

2010-09-07 Thread ashish koul
check the attachment

 Regards

Ashish Koul
9953979291
*akoul*.*blogspot*.com 
*akoul*.wordpress.com 
My Linkedin Profile 




On Tue, Sep 7, 2010 at 11:23 AM, Pankaj Kumar wrote:

> Hi all i have a excel sheet need help, i wanted to use excel formula not
> pivot table or chat
>
> --
>  *Warm Regards
> Pankaj kumar
> M: 9899816107
> e-mail: rajputpanka...@gmail.com
>rajputpank...@yahoo.in*
> *   rajputpankaj1...@rediffmail.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
>
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 7000 subscribers worldwide and receive many nice notes about
> the learning and support from the group.Let friends and co-workers know they
> can subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>



--

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


new & Carry forward entries monthwise(1).xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


RE: $$Excel-Macros$$ Need help

2010-09-07 Thread Dave Bonallack

Hi,

Please see the attached.

Regards - Dave
 


Date: Tue, 7 Sep 2010 11:23:17 +0530
Subject: $$Excel-Macros$$ Need help
From: rajputpanka...@gmail.com
To: excel-macros@googlegroups.com


Hi all i have a excel sheet need help, i wanted to use excel formula not pivot 
table or chat
-- 


Warm Regards
Pankaj kumar
M: 9899816107
e-mail: rajputpanka...@gmail.com
   rajputpank...@yahoo.in
   rajputpankaj1...@rediffmail.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
 
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!
 
We reach over 7000 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe
  

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


new & Carry forward entries monthwise(1).xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Need Help

2010-09-20 Thread P.VIJAYKUMAR
Hi Friend,


You can download Excel addins from www.diddb.com,www.vertex42.com,
www.ozgrid.com,www.add-ins.com,www.ablebits.com,www.office-eccel.com etc.
For creating excel add-ins you have to be proficient in  VBA Coding,writing
Macros and also you require knowledge of some excel events and applications.





Regards,
VIJAY KUMAR

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

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

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


Re: $$Excel-Macros$$ Need Help

2009-11-12 Thread Rajeev Nandan
Dear Mr.Chandra Gupta
Please explain the formula as i want to use the same fomula in other file.
Regards,
Rajeev

On Thu, Nov 12, 2009 at 4:12 PM, Chandra Gupta  wrote:

> Dear Raghavendra br please attached solution for your problem. I have named
> the ranges on the ex rate datasheet.
>
> Chandra Gupta
>
>
>
> On Thu, Nov 12, 2009 at 2:55 PM, raghavendra br 
> wrote:
>
>>
>>
>> Hi Excel Gurus,
>>
>> Kindly need your assistance on the query -mentioned in the attachment.
>>
>> Thanking you in advance.
>>
>> Regards
>> Rags!!!
>>
>>
>>
>> --
>> With Luv
>>
>> Rags!!!
>>
>> --
>>
>> --
>> Some important links for excel users:
>> 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
>> http://www.excelitems.com
>> 2. Excel tutorials at http://www.excel-macros.blogspot.com
>> 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
>> 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>> If you find any spam message in the group, please send an email to:
>> Ayush Jain @ jainayus...@gmail.com or
>> Ashish Jain @ 26may.1...@gmail.com
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,500 subscribers worldwide and receive many nice notes
>> about the learning and support from the group. Our goal is to have 10,000
>> subscribers by the end of 2009. Let friends and co-workers know they can
>> subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>
> --
>
> --
> Some important links for excel users:
> 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
> http://www.excelitems.com
> 2. Excel tutorials at http://www.excel-macros.blogspot.com
> 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
> 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
>
> To post to this group, send email to excel-macros@googlegroups.com
> If you find any spam message in the group, please send an email to:
> Ayush Jain @ jainayus...@gmail.com or
> Ashish Jain @ 26may.1...@gmail.com
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,500 subscribers worldwide and receive many nice notes about
> the learning and support from the group. Our goal is to have 10,000
> subscribers by the end of 2009. Let friends and co-workers know they can
> subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

-- 
--
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Re: $$Excel-Macros$$ Need Help

2011-01-17 Thread in.vaib...@googlemail.com
Hi

Se att, u can do with pivot table.

Rgds

Enjoy excelling...


On Mon, Jan 17, 2011 at 7:04 PM, Priya Jose  wrote:

> Dear Team,
>
> Please find attach file in which i have explained my requirement and
> request of your kindness to provide me the solution, *as i have more than
> 4000 records of such data*.
>
> Thanks & Regards
> Priya
>
> --
>
> --
> 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


Solution Quest.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Need Help

2011-01-17 Thread ashish koul
check the attachment se eif it helps




On Mon, Jan 17, 2011 at 7:04 PM, Priya Jose  wrote:

>  Dear Team,
>
> Please find attach file in which i have explained my requirement and
> request of your kindness to provide me the solution, *as i have more than
> 4000 records of such data*.
>
> Thanks & Regards
> Priya
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> Like our page on facebook , Just follow below link
> http://www.facebook.com/discussexcel
>



-- 
*Regards*
* *
*Ashish Koul*
*akoul*.*blogspot*.com 
*akoul*.wordpress.com 
My Linkedin Profile 


P Before printing, think about the environment.

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

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


Solution_Quest(1).xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Need Help

2011-02-10 Thread Paul Schreiner
Are you wanting to count the sheets
or count the records/rows on all sheets?

Sheets.Count

gets you the number of sheets.

For Sht = 1 to sheets.count
    total = total 
+ application.worksheetfunction.counta(sheets(sht).range("A1:A65000"))
next Sht

would loop through all sheets and count the number of non-blank cells in column 
"A".

??

Paul





From: Prathima R 
To: excel-macros@googlegroups.com
Cc: ashish koul 
Sent: Thu, February 10, 2011 6:21:43 AM
Subject: $$Excel-Macros$$ Need Help


 
Hi,
i have multiple sheets and i want to count the number of instruments in one go, 
with COUNTA am not able to get. I tried grouping the sheets but could't get the 
count of all sheets.
need your suggestion
Thanks,
Prathima-- 
--

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

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

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

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


Re: $$Excel-Macros$$ Need Help

2011-02-10 Thread Prathima R
Thanks for the response.

Here am trying to count the number of non-blanks in multiple sheets



On Thu, Feb 10, 2011 at 6:32 PM, Paul Schreiner wrote:

>  Are you wanting to count the sheets
> or count the records/rows on all sheets?
>
> Sheets.Count
>
> gets you the number of sheets.
>
> For Sht = 1 to sheets.count
> total = total
> + application.worksheetfunction.counta(sheets(sht).range("A1:A65000"))
> next Sht
>
> would loop through all sheets and count the number of non-blank cells in
> column "A".
>
> ??
>
> Paul
>
>  --
> *From:* Prathima R 
> *To:* excel-macros@googlegroups.com
> *Cc:* ashish koul 
> *Sent:* Thu, February 10, 2011 6:21:43 AM
> *Subject:* $$Excel-Macros$$ Need Help
>
>
>
> Hi,
>
> i have multiple sheets and i want to count the number of instruments in one
> go, with COUNTA am not able to get. I tried grouping the sheets but could't
> get the count of all sheets.
>
> need your suggestion
> Thanks,
> Prathima
>
> --
>
> --
> 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: $$Excel-Macros$$ Need Help

2011-02-10 Thread Prathima R
please advice in this concern as i am having around 20-30 workbooks where in
need to  count the number of Non-blanks in multilple sheets.

Thanks,
Prathima

On Thu, Feb 10, 2011 at 7:23 PM, Prathima R  wrote:

>
> Thanks for the response.
>
> Here am trying to count the number of non-blanks in multiple sheets
>
>
>
> On Thu, Feb 10, 2011 at 6:32 PM, Paul Schreiner wrote:
>
>>  Are you wanting to count the sheets
>> or count the records/rows on all sheets?
>>
>> Sheets.Count
>>
>> gets you the number of sheets.
>>
>> For Sht = 1 to sheets.count
>> total = total
>> + application.worksheetfunction.counta(sheets(sht).range("A1:A65000"))
>> next Sht
>>
>> would loop through all sheets and count the number of non-blank cells in
>> column "A".
>>
>> ??
>>
>> Paul
>>
>>  --
>> *From:* Prathima R 
>> *To:* excel-macros@googlegroups.com
>> *Cc:* ashish koul 
>> *Sent:* Thu, February 10, 2011 6:21:43 AM
>> *Subject:* $$Excel-Macros$$ Need Help
>>
>>
>>
>> Hi,
>>
>> i have multiple sheets and i want to count the number of instruments in
>> one go, with COUNTA am not able to get. I tried grouping the sheets but
>> could't get the count of all sheets.
>>
>> need your suggestion
>> Thanks,
>> Prathima
>>
>> --
>>
>> --
>> 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: $$Excel-Macros$$ Need Help

2011-02-10 Thread Paul Schreiner
You've asked this question in an Excel VBA Macros user group.

Do you not wish a VBA solution?

Also, your initial question stated that you had multiple "sheets".
This follow-up says "workbooks".

So, the question is:
are they multiple sheets in multiple workbooks?
one sheet per workbook?

also... 
you need to give us more "setup" information.
are all of the workbooks open?
or do you want the macro to open them?
How are the workbooks identified?
 Are they in a single folder?
 Are they in sub-folders beneath a single folder?
 Are you opening ALL excel files in the folder/subfolder?
 Or do you have a list of files to process?
And...
 What constitutes "non-blanks"?
   Are you counting rows of data?
   are there columns that ALWAYS have data that defines a "record"?
   Or are you counting the non-blank cells in the entire sheet? (doubtful)

Oh.. and... what version of Excel are you using?


What do you want to do with the information?

I have a macro that will open all Excel files in a given folder and all 
sub-folders.
And for each file, count the number of non-blank cells in each sheet.
Then, in the "report" file,
list the file name of each file, the number of sheets and the number of records.

I can give that to you and then you can customize it to fit your needs...

Paul




From: Prathima R 
To: excel-macros@googlegroups.com
Sent: Thu, February 10, 2011 9:11:41 AM
Subject: Re: $$Excel-Macros$$ Need Help


please advice in this concern as i am having around 20-30 workbooks where in 
need to  count the number of Non-blanks in multilple sheets.

Thanks,
Prathima


On Thu, Feb 10, 2011 at 7:23 PM, Prathima R  wrote:


>
>Thanks for the response.
>Here am trying to count the number of non-blanks in multiple sheets
> 
>
>On Thu, Feb 10, 2011 at 6:32 PM, Paul Schreiner  wrote:
>
>Are you wanting to count the sheets
>>or count the records/rows on all sheets?
>>
>>Sheets.Count
>>
>>gets you the number of sheets.
>>
>>For Sht = 1 to sheets.count
>>    total = total 
>>+ application.worksheetfunction.counta(sheets(sht).range("A1:A65000"))
>>next Sht
>>
>>would loop through all sheets and count the number of non-blank cells in 
>>column 
>>"A".
>>
>>??
>>
>>Paul
>>
>>
>>
>>

From: Prathima R 
>>To: excel-macros@googlegroups.com
>>Cc: ashish koul 
>>Sent: Thu, February 10, 2011 6:21:43 AM
>>Subject: $$Excel-Macros$$ Need Help
>>
>>
>>
>> 
>>Hi,
>>i have multiple sheets and i want to count the number of instruments in one 
>>go, 
>>with COUNTA am not able to get. I tried grouping the sheets but could't get 
>>the 
>>count of all sheets.
>>need your suggestion
>>Thanks,
>>Prathima-- 
>>--
>>
>>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 imp

Re: $$Excel-Macros$$ Need Help

2011-02-10 Thread rajan verma
Try This..

Sub GetNonBlank()
For i = 1 To ActiveWorkbook.Sheets.Count
t = t + WorksheetFunction.CountA(Sheets(i).UsedRange)
Next
MsgBox t
End Sub


On Thu, Feb 10, 2011 at 6:11 AM, Prathima R  wrote:

> please advice in this concern as i am having around 20-30 workbooks where
> in need to  count the number of Non-blanks in multilple sheets.
>
> Thanks,
> Prathima
>
> On Thu, Feb 10, 2011 at 7:23 PM, Prathima R wrote:
>
>>
>> Thanks for the response.
>>
>> Here am trying to count the number of non-blanks in multiple sheets
>>
>>
>>
>> On Thu, Feb 10, 2011 at 6:32 PM, Paul Schreiner 
>> wrote:
>>
>>>  Are you wanting to count the sheets
>>> or count the records/rows on all sheets?
>>>
>>> Sheets.Count
>>>
>>> gets you the number of sheets.
>>>
>>> For Sht = 1 to sheets.count
>>> total = total
>>> + application.worksheetfunction.counta(sheets(sht).range("A1:A65000"))
>>> next Sht
>>>
>>> would loop through all sheets and count the number of non-blank cells in
>>> column "A".
>>>
>>> ??
>>>
>>> Paul
>>>
>>>  --
>>> *From:* Prathima R 
>>> *To:* excel-macros@googlegroups.com
>>> *Cc:* ashish koul 
>>> *Sent:* Thu, February 10, 2011 6:21:43 AM
>>> *Subject:* $$Excel-Macros$$ Need Help
>>>
>>>
>>>
>>> Hi,
>>>
>>> i have multiple sheets and i want to count the number of instruments in
>>> one go, with COUNTA am not able to get. I tried grouping the sheets but
>>> could't get the count of all sheets.
>>>
>>> need your suggestion
>>> Thanks,
>>> Prathima
>>>
>>> --
>>>
>>> --
>>> 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
>



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


Re: $$Excel-Macros$$ Need Help

2011-02-11 Thread Prathima R
Paul as per below conversation the macro which you have can u please send me
so that i customize from my  end.

Thanks,
Prathima

On Thu, Feb 10, 2011 at 10:55 PM, Paul Schreiner wrote:

>  You've asked this question in an Excel VBA Macros user group.
>
> Do you not wish a VBA solution?
>
> Also, your initial question stated that you had multiple "sheets".
> This follow-up says "workbooks".
>
> So, the question is:
> are they multiple sheets in multiple workbooks?
> one sheet per workbook?
>
> also...
> you need to give us more "setup" information.
> are all of the workbooks open?
> or do you want the macro to open them?
> How are the workbooks identified?
>  Are they in a single folder?
>  Are they in sub-folders beneath a single folder?
>  Are you opening ALL excel files in the folder/subfolder?
>  Or do you have a list of files to process?
> And...
>  What constitutes "non-blanks"?
>Are you counting rows of data?
>are there columns that ALWAYS have data that defines a "record"?
>Or are you counting the non-blank cells in the entire sheet? (doubtful)
>
> Oh.. and... what version of Excel are you using?
>
> What do you want to do with the information?
>
> I have a macro that will open all Excel files in a given folder and all
> sub-folders.
> And for each file, count the number of non-blank cells in each sheet.
> Then, in the "report" file,
> list the file name of each file, the number of sheets and the number of
> records.
> I can give that to you and then you can customize it to fit your needs...
>
> Paul
>
>  --
> *From:* Prathima R 
> *To:* excel-macros@googlegroups.com
> *Sent:* Thu, February 10, 2011 9:11:41 AM
>
> *Subject:* Re: $$Excel-Macros$$ Need Help
>
> please advice in this concern as i am having around 20-30 workbooks where
> in need to  count the number of Non-blanks in multilple sheets.
>
> Thanks,
> Prathima
>
> On Thu, Feb 10, 2011 at 7:23 PM, Prathima R wrote:
>
>>
>> Thanks for the response.
>>
>> Here am trying to count the number of non-blanks in multiple sheets
>>
>>
>>
>> On Thu, Feb 10, 2011 at 6:32 PM, Paul Schreiner 
>> wrote:
>>
>>>  Are you wanting to count the sheets
>>> or count the records/rows on all sheets?
>>>
>>> Sheets.Count
>>>
>>> gets you the number of sheets.
>>>
>>> For Sht = 1 to sheets.count
>>> total = total
>>> + application.worksheetfunction.counta(sheets(sht).range("A1:A65000"))
>>> next Sht
>>>
>>> would loop through all sheets and count the number of non-blank cells in
>>> column "A".
>>>
>>> ??
>>>
>>> Paul
>>>
>>>  --
>>> *From:* Prathima R 
>>> *To:* excel-macros@googlegroups.com
>>> *Cc:* ashish koul 
>>> *Sent:* Thu, February 10, 2011 6:21:43 AM
>>> *Subject:* $$Excel-Macros$$ Need Help
>>>
>>>
>>>
>>> Hi,
>>>
>>> i have multiple sheets and i want to count the number of instruments in
>>> one go, with COUNTA am not able to get. I tried grouping the sheets but
>>> could't get the count of all sheets.
>>>
>>> need your suggestion
>>> Thanks,
>>> Prathima
>>>
>>> --
>>>
>>> --
>>> 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

Re: $$Excel-Macros$$ Need Help

2011-02-11 Thread Paul Schreiner
Here you go.
The technique it uses is a FileSystem object.
It creates a  SubFolder collection and processes each
folder in the Subfolder collection.
In each of these folders, it creates a Files collection
and processes each file in the collection.

Paul
'

Option Explicit
Global fso, RepRow, RepSheet
'

Sub NewSheetFolders()
    Dim stat, SubFolder, SubFolders, Folder
    Dim FolderName, Fldr
    '-
    RepSheet = "File-List"
    RepRow = 1
    '-
    Application.ScreenUpdating = False
    On Error Resume Next
    Set fso = CreateObject("Scripting.FileSystemObject")
    '-
    ' Prepare Sheet for collecting data by clearing current contents
    '-
    Sheets(RepSheet).Select
    Range("A2:Z65000").ClearContents
    '-
    ' Beginning folder name
    '-
    FolderName = "C:\temp\DataFiles"
    '-
    'Begin Processing
    '-
    stat = Get_ShtFolders(FolderName)
    '-
    On Error GoTo 0
    Application.ScreenUpdating = True
    MsgBox "Finished"
End Sub
'

Function Get_ShtFolders(FolderName)
    Dim stat, SubFolder, SubFolders, Folder, ShtCnt
    Dim File, FileCollection, Ext
    '-
    Set Folder = fso.GetFolder(FolderName)
    Set FileCollection = Folder.Files
    '-
    ' Process each file in Folder
    '-
    For Each File In FileCollection
    Ext = fso.getextensionname(File.Path)
    If (UCase(Left(Ext, 3)) = "XLS") Then
    stat = Get_File_Data(File.Path, File.Name)
    End If
    Next File
    '-
    Set SubFolders = Folder.SubFolders
    '-
    ' Process each SubFolder in Folder
    '-
    If SubFolders.Count <> 0 Then
    For Each SubFolder In SubFolders
    stat = Get_ShtFolders(SubFolder.Path)
    Next
    End If
    Get_ShtFolders = ShtCnt
End Function
'

Function Get_File_Data(XLFullName, XLFileName)
    Err.Clear
    Workbooks.Open XLFullName, ReadOnly:=True, UpdateLinks:=False
    If (Not Err) Then
    RepRow = RepRow + 1
    ThisWorkbook.Sheets(RepSheet).Cells(RepRow, 1).Value = XLFileName
    ThisWorkbook.Sheets(RepSheet).Cells(RepRow, 2).Value = Sheets.Count
    Else
    MsgBox Err.Number & Chr(13) & Err.Description
    End If
    ActiveWorkbook.Close savechanges:=False
End Function
'================


 




From: Prathima R 
To: excel-macros@googlegroups.com
Sent: Fri, February 11, 2011 7:49:00 AM
Subject: Re: $$Excel-Macros$$ Need Help


Paul as per below conversation the macro which you have can u please send me so 
that i customize from my  end.

Thanks,
Prathima


On Thu, Feb 10, 2011 at 10:55 PM, Paul Schreiner  wrote:

You've asked this question in an Excel VBA Macros user group.
>
>Do you not wish a VBA solution?
>
>Also, your initial question stated that you had multiple "sheets".
>This follow-up says "workbooks".
>
>So, the question is:
>are they multiple sheets in multiple workbooks?
>one sheet per workbook?
>
>also... 
>you need to give us more "setup" information.
>are all of the workbooks open?
>or do you want the macro to open them?
>How are the workbooks identified?
> Are they in a single folder?
> Are they in sub-folders beneath a single folder?
> Are you opening ALL excel files in the folder/subfolder?
> Or do you have a list of files to process?
>And...
> What constitutes "non-blanks"?
>   Are you counting rows of data?
>   are there columns that ALWAYS have data that defines a "record"?
>   Or are you counting the non-blank cells in the entire sheet? (doubtful)
>
>Oh.. and...

Re: $$Excel-Macros$$ Need Help!!!!!!!!!!!!!!!!!

2011-02-13 Thread siti Vi
That was Excel limitation: max number of criteria (unique values
list)on Auto Filter = 1000



On 2/13/11, Aamir Shahzad  wrote:
> sheet attached, simply when you want to use auto filter you must select all
> your data till at the end.
> Regards,
> Aamir Shahzad
>
> On Wed, Feb 9, 2011 at 10:27 AM, Surendra wrote:
>
>> HI Team,
>> I need your help, In attached file i fill the numbers from 1 to 1500 but 
>> when i see the data from Auto filter an

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

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


Re: $$Excel-Macros$$ Need Help

2011-02-22 Thread Mahesh parab
Hi

find attach, check whether it helps as per my understanding NA count should
be 0

On Tue, Feb 22, 2011 at 8:59 PM, Prathima R  wrote:

>  My colleague has this equation set up to count the number of cells within
> a range that are three standard deviations higher than the mean. But when he
> has N/As in the set, it's returning those in the count as well. Do you have
> any ideas on how to adjust the formula to only count straight numeric
> values?
>
>
> =COUNTIF(AT6:AT52664,">median(AT6:AT52664)+(3*stdevp(AT6:AT52664))")
>
> Please help in this concern
>
> --
>
> --
> 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


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


Re: $$Excel-Macros$$ NEED HELP

2011-03-25 Thread Anupam Konhar
Hi Daniel,

Thank you so much for helping me out with this.

Appreciate ur help bro

Thanks n Regards

Anupam

On Fri, Mar 25, 2011 at 1:55 AM, Daniel  wrote:

>  Hi,
>
> Have a look at the attached file.
>
> Regards.
>
> Daniel
>
>
>
> *De :* excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
> *De la part de* Anupam Konhar
> *Envoyé :* mercredi 23 mars 2011 13:51
> *À :* excel-macros@googlegroups.com
> *Objet :* $$Excel-Macros$$ NEED HELP
>
>
>
> Dear All,
>
> Need helpI would like to put this data in graph.so need help with
> that.would appreciate if you guys can assist me with this.
>
> Thanks n Regards
>
> Anupam
>
> --
>
> --
> 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: $$Excel-Macros$$ Need Help!

2011-04-07 Thread ashish koul
see if it helps



On Fri, Apr 8, 2011 at 2:45 AM, syed aliya raza hashim
wrote:

> Hi,
> Hi i have attached my file i want in sheet 2 there are column c in that i
> want the name from sheet 1 but there are two condition first is match by ID
> then match by Name as well then how can we do this
>
>
>
> --
> syed aliya
>
> --
>
> --
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> Like our page on facebook , Just follow below link
> http://www.facebook.com/discussexcel
>



-- 
*Regards*
* *
*Ashish Koul*
*akoul*.*blogspot*.com 
*akoul*.wordpress.com 
My Linkedin Profile 


P Before printing, think about the environment.

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

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


match_by_id&name_then_pull_out_submitted_by_from_sheet_1(1).xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Need Help!

2011-04-07 Thread §»VIPER«§
hi syed,

find the attached without array.

-- 
*Thanks & Regards

Thamu
*

On Fri, Apr 8, 2011 at 2:45 AM, syed aliya raza hashim
wrote:

> Hi,
> Hi i have attached my file i want in sheet 2 there are column c in that i
> want the name from sheet 1 but there are two condition first is match by ID
> then match by Name as well then how can we do this
>
>
>
> --
> syed aliya
>
> --
>
> --
> 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


same without array.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Need Help!

2011-04-08 Thread SAJID MANSOOR
As per my observation this is producing wrong result, please check it once
again.

On Fri, Apr 8, 2011 at 9:34 AM, §»VIPER«§  wrote:

> hi syed,
>
> find the attached without array.
>
> --
> *Thanks & Regards
>
> Thamu
> *
>
> On Fri, Apr 8, 2011 at 2:45 AM, syed aliya raza hashim <
> hashim...@gmail.com> wrote:
>
>> Hi,
>> Hi i have attached my file i want in sheet 2 there are column c in that i
>> want the name from sheet 1 but there are two condition first is match by ID
>> then match by Name as well then how can we do this
>>
>>
>>
>> --
>> syed aliya
>>
>> --
>>
>> --
>> 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: $$Excel-Macros$$ Need Help!

2011-04-08 Thread Kishor KumAr.A
Hi,

Find the attachment.

Thaks,
Kishor
On Fri, Apr 8, 2011 at 2:45 AM, syed aliya raza hashim
wrote:

> Hi,
> Hi i have attached my file i want in sheet 2 there are column c in that i
> want the name from sheet 1 but there are two condition first is match by ID
> then match by Name as well then how can we do this
>
>
>
> --
> syed aliya
>
> --
>
> --
> 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,

Kishor Kumar Ananthapalli

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


match_by_id&name_then_pull_out_submitted_by_from_sheet_1(1).xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ need help!

2011-04-13 Thread Paul Schreiner
First problem:

Read guidelines for posting questions.

DESCRIBE THE PROBLEM!
Your Subject line should give a brief description of the problem.
You should elaborate in the email, and explain what you've tried
and where the error is.

THEN attach a file if it helps.

We have many helpful users here who value their time.
People with a passion for pivot tables will jump right in when there is a pivot 
table question.
If the problem is with date calculations, others will be helpful.
A fewer number have expertise in Oracle or Access database access.

But only the really bored ones will take the time to investigate posts like:
Need Help!
Urgent!
Please answer!

Instead, there are people like me that receive between 50 and 200 emails every 
night
and USUALLY simply delete those where the author isn't willing to spend the
time to describe his/her problem, but expects everyone to drop what they're 
doing
and help simply because it's "urgent"...

sorry for the rant...
It just happened to strike at a bad time...

P





From: syed aliya raza hashim 
To: excel-macros@googlegroups.com
Sent: Wed, April 13, 2011 1:52:33 AM
Subject: $$Excel-Macros$$ need help!

Plz solve my problem! 



-- 
syed aliya
-- 
--

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


  1   2   3   4   5   6   7   8   >