$$Excel-Macros$$ Problem in Pivot

2017-09-20 Thread Vijayendra Rao
Hi Experts,



Request you to help to resolve this below query.



I have put pivot for one data and it contains employee code and name. I
tried option multiple consolidation ranges while put a pivot. Name also
consider as value. Need to show employee code as well as name in pivot,
also is it possible to hide zero values rows.



Request you to guide the steps if above is possible. Attached is the sample
file.

Please let me know if any other excel function will work for this function,
I will try the same.


Regards,
Vijayendra

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

FORUM RULES

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

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


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


Re: $$Excel-Macros$$ Problem assigning a function to a variable

2016-06-06 Thread HARISH KUMAR
Change 16 to 15
On 05-Jun-2016 3:50 AM, "Laura Wheaton-Werle" <
la...@doublewcommunications.com> wrote:

> I've created a simple VBA code that copies a line of code to a specified
> range.
>
> Sub PowerOfOne_Report()
>
> ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:3").Copy
> ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:16").Select
> ActiveSheet.Paste
>
> End Sub
>
> HOWEVER, I need to change the "16" to a variable. Everything I try returns
> an error message. My current code looks like this:
>
> Sub PowerOfOne_Report()
>
> Dim m As Integer
>
> m = Application.WorksheetFunction.Count(C1, C100)
>
> ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:3").Copy
> ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:m").Select
> ActiveSheet.Paste
>
> End Sub
>
> I get a Type Mismatch error on the highlighted line of code.
>
> Additionally, there's a little more to the variable "m" than the function
> above, but every time I try to adjust it, I get an error message.
>
>- The COUNT needs to be performed on the "PALMS" worksheet (however,
>the PALMS worksheet is where the command button will be located, so,
>technically, that will be the active sheet).
>- I also need to add 2 to the total count.
>
> Can anyone helps me with this?
>
>
> Thanks,
>
> Laura
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at https://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


$$Excel-Macros$$ Problem assigning a function to a variable

2016-06-04 Thread Laura Wheaton-Werle
I've created a simple VBA code that copies a line of code to a specified 
range.

Sub PowerOfOne_Report()

ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:3").Copy
ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:16").Select
ActiveSheet.Paste

End Sub

HOWEVER, I need to change the "16" to a variable. Everything I try returns 
an error message. My current code looks like this:

Sub PowerOfOne_Report()

Dim m As Integer

m = Application.WorksheetFunction.Count(C1, C100)

ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:3").Copy
ActiveWorkbook.Worksheets("PowerOfOne").Rows("3:m").Select
ActiveSheet.Paste

End Sub

I get a Type Mismatch error on the highlighted line of code. 

Additionally, there's a little more to the variable "m" than the function 
above, but every time I try to adjust it, I get an error message.

   - The COUNT needs to be performed on the "PALMS" worksheet (however, the 
   PALMS worksheet is where the command button will be located, so, 
   technically, that will be the active sheet).
   - I also need to add 2 to the total count.

Can anyone helps me with this?


Thanks,

Laura

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Problem in Pivot Table

2016-04-25 Thread Pravin Gunjal
Perfect... Thanks!


*With regards,**Pravin Gunjal*
*Mobile: 77100 *
*97250*




On Mon, Apr 25, 2016 at 1:17 PM, Abhishek Jain 
wrote:

> Try this:
>
>1. Right-click a cell in the pivot table
>2. Click on PivotTable options
>3. Click on the Data tab
>4. In the Retain Items section, select None from the drop down list.
>5. Click OK, then refresh the pivot table.
>
>
> On Mon, Apr 25, 2016 at 12:54 PM, Pravin Gunjal  wrote:
>
>> Not relevant..
>>
>>
>> *With regards,**Pravin Gunjal*
>> *Mobile: 77100 *
>> *97250*
>>
>>
>>
>>
>> On Mon, Apr 25, 2016 at 12:41 PM, Satendra kumar <
>> satendrakuma...@gmail.com> wrote:
>>
>>> Hi,
>>>
>>> you can check name spelling or space.
>>>
>>> thanks
>>> satendra
>>>
>>> On Mon, Apr 25, 2016 at 12:32 PM, Pravin Gunjal 
>>> wrote:
>>>
 Hi Friends,

 I got an error while arranging the data in pivot table.

 The list has only 34 names common in Data Sheet while when I click on
 Row Lable Filter in Pivot Sheet it shows many names and while selection on
 them nothing is getting displayed. For Example: "DR . ABHIJEET PATAK"

 Can you please let me know how is it happening? File attached.

 Thanks in anticipation.

 Regards
 Pravin Gunjal

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

 FORUM RULES

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

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

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

Re: $$Excel-Macros$$ Problem in Pivot Table

2016-04-25 Thread Abhishek Jain
Try this:

   1. Right-click a cell in the pivot table
   2. Click on PivotTable options
   3. Click on the Data tab
   4. In the Retain Items section, select None from the drop down list.
   5. Click OK, then refresh the pivot table.


On Mon, Apr 25, 2016 at 12:54 PM, Pravin Gunjal  wrote:

> Not relevant..
>
>
> *With regards,**Pravin Gunjal*
> *Mobile: 77100 *
> *97250*
>
>
>
>
> On Mon, Apr 25, 2016 at 12:41 PM, Satendra kumar <
> satendrakuma...@gmail.com> wrote:
>
>> Hi,
>>
>> you can check name spelling or space.
>>
>> thanks
>> satendra
>>
>> On Mon, Apr 25, 2016 at 12:32 PM, Pravin Gunjal 
>> wrote:
>>
>>> Hi Friends,
>>>
>>> I got an error while arranging the data in pivot table.
>>>
>>> The list has only 34 names common in Data Sheet while when I click on
>>> Row Lable Filter in Pivot Sheet it shows many names and while selection on
>>> them nothing is getting displayed. For Example: "DR . ABHIJEET PATAK"
>>>
>>> Can you please let me know how is it happening? File attached.
>>>
>>> Thanks in anticipation.
>>>
>>> Regards
>>> Pravin Gunjal
>>>
>>> --
>>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
>>> It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>>> https://www.facebook.com/discussexcel
>>>
>>> FORUM RULES
>>>
>>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>>> will not get quick attention or may not be answered.
>>> 2) Don't post a question in the thread of another member.
>>> 3) Don't post questions regarding breaking or bypassing any security
>>> measure.
>>> 4) Acknowledge the responses you receive, good or bad.
>>> 5) Jobs posting is not allowed.
>>> 6) Sharing copyrighted material and their links is not allowed.
>>>
>>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>>> members are not responsible for any loss.
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "MS EXCEL AND VBA MACROS" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to excel-macros+unsubscr...@googlegroups.com.
>>> To post to this group, send email to excel-macros@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/excel-macros.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Thanks & Regards
>> Satendra Kumar
>>
>> --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to a topic in the
>> Google Groups "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/excel-macros/ZmIyRfDocaM/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> excel-macros+unsubscr...@googlegroups.com.
>> To post to this group, send email to excel-macros@googlegroups.com.
>> Visit this group at https://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to

Re: $$Excel-Macros$$ Problem in Pivot Table

2016-04-25 Thread Pravin Gunjal
Not relevant..


*With regards,**Pravin Gunjal*
*Mobile: 77100 *
*97250*




On Mon, Apr 25, 2016 at 12:41 PM, Satendra kumar 
wrote:

> Hi,
>
> you can check name spelling or space.
>
> thanks
> satendra
>
> On Mon, Apr 25, 2016 at 12:32 PM, Pravin Gunjal  wrote:
>
>> Hi Friends,
>>
>> I got an error while arranging the data in pivot table.
>>
>> The list has only 34 names common in Data Sheet while when I click on Row
>> Lable Filter in Pivot Sheet it shows many names and while selection on them
>> nothing is getting displayed. For Example: "DR . ABHIJEET PATAK"
>>
>> Can you please let me know how is it happening? File attached.
>>
>> Thanks in anticipation.
>>
>> Regards
>> Pravin Gunjal
>>
>> --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to excel-macros+unsubscr...@googlegroups.com.
>> To post to this group, send email to excel-macros@googlegroups.com.
>> Visit this group at https://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Thanks & Regards
> Satendra Kumar
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/excel-macros/ZmIyRfDocaM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at https://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Problem in Pivot Table

2016-04-25 Thread Satendra kumar
Hi,

you can check name spelling or space.

thanks
satendra

On Mon, Apr 25, 2016 at 12:32 PM, Pravin Gunjal  wrote:

> Hi Friends,
>
> I got an error while arranging the data in pivot table.
>
> The list has only 34 names common in Data Sheet while when I click on Row
> Lable Filter in Pivot Sheet it shows many names and while selection on them
> nothing is getting displayed. For Example: "DR . ABHIJEET PATAK"
>
> Can you please let me know how is it happening? File attached.
>
> Thanks in anticipation.
>
> Regards
> Pravin Gunjal
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at https://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Thanks & Regards
Satendra Kumar

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ problem in code fpr data copied from text to number format

2015-02-03 Thread Ashish Bhalara
Thank you Mr.Paul to suggest me best in coding.

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


On Tue, Feb 3, 2015 at 5:50 PM, Paul Schreiner 
wrote:

> The problem is:
> When you insert a row in your table, column "D" doesn't "inherit" the
> properties of the previous row, but instead reverts to the "General" format
> of the rest of the column.
>
> There's a couple ways of handling this.
> I tried both and they both seem to work:
>
> Select the entire column "D" and change the format to "Text".
>
> add this statement:
>
> Worksheets("BankData").Cells(NewRow, 4).NumberFormat = "@"
> (prior to:
> Worksheets("BankData").Cells(NewRow, 4).Value = ano
>
>
> (I found this by recording a macro, in which I changed the cell format to
> "Text")
>
>
> also:
>
> in your macro, when you're looking for a blank row, there's LOTS of ways
> to do this, of course, but your loop should look more like:
>
>
> For NewRow = 5 To 1000
> If Worksheets("BankData").Cells(NewRow, "A").Value = "" Then
> Exit For
> End If
> Next NewRow
>
> 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:* Ashish Bhalara 
> *To:* excel-macros@googlegroups.com
> *Sent:* Tuesday, February 3, 2015 1:02 AM
> *Subject:* $$Excel-Macros$$ problem in code fpr data copied from text to
> number format
>
> Dear experts,
>
> Please see attached file in which account no. field is text format but
> copied in number format. Problem is that when I type 0123, data copied at
> 123 as per my coding, I also try by define variable as string but problem
> same as standing.
>
> Please edit my code to solve this issue.
>
> Regards.
> Ashish Bhalara
> 9624111822
> P*Please do not print this email unless it is absolutely necessary.
> Spread environmental üawareness.♣♣♣*
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/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 rec

Re: $$Excel-Macros$$ problem in code fpr data copied from text to number format

2015-02-03 Thread Paul Schreiner
The problem is:
When you insert a row in your table, column "D" doesn't "inherit" the 
properties of the previous row, but instead reverts to the "General" format of 
the rest of the column.
 
There's a couple ways of handling this.
I tried both and they both seem to work:
 
Select the entire column "D" and change the format to "Text".
 
add this statement:

Worksheets("BankData").Cells(NewRow, 4).NumberFormat = "@"

(prior to:
Worksheets("BankData").Cells(NewRow, 4).Value = ano


(I found this by recording a macro, in which I changed the cell format to 
"Text")


also:

in your macro, when you're looking for a blank row, there's LOTS of ways to do 
this, of course, but your loop should look more like:


For NewRow = 5 To 1000
If Worksheets("BankData").Cells(NewRow, "A").Value = "" Then
Exit For
End If
Next NewRow

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: Ashish Bhalara 
>To: excel-macros@googlegroups.com 
>Sent: Tuesday, February 3, 2015 1:02 AM
>Subject: $$Excel-Macros$$ problem in code fpr data copied from text to number 
>format
>  
>
>
>Dear experts,
>
>
>Please see attached file in which account no. field is text format but copied 
>in number format. Problem is that when I type 0123, data copied at 123 as per 
>my coding, I also try by define variable as string but problem same as 
>standing.
>
>
>Please edit my code to solve this issue.
>
>
>Regards.
>Ashish Bhalara
>9624111822
>PPlease do not print this email unless it is absolutely necessary. Spread
environmental üawareness.♣♣♣
>
> 
-- 
>Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
>=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
>https://www.facebook.com/discussexcel
> 
>FORUM RULES
> 
>1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
>Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
>quick attention or may not be answered.
>2) Don't post a question in the thread of another member.
>3) Don't post questions regarding breaking or bypassing any security measure.
>4) Acknowledge the responses you receive, good or bad.
>5) Jobs posting is not allowed.
>6) Sharing copyrighted material and their links is not allowed.
> 
>NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
>members are not responsible for any loss.
>--- 
>You received this message because you are subscribed to the Google Groups "MS 
>EXCEL AND VBA MACROS" group.
>To unsubscribe from this group and stop receiving emails from it, send an 
>email to excel-macros+unsubscr...@googlegroups.com.
>To post to this group, send email to excel-macros@googlegroups.com.
>Visit this group at http://groups.google.com/group/excel-macros.
>For more options, visit https://groups.google.com/d/optout.
>
>
>

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

FORUM RULES

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

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


$$Excel-Macros$$ problem in code fpr data copied from text to number format

2015-02-02 Thread Ashish Bhalara
Dear experts,

Please see attached file in which account no. field is text format but
copied in number format. Problem is that when I type 0123, data copied at
123 as per my coding, I also try by define variable as string but problem
same as standing.

Please edit my code to solve this issue.

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

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

FORUM RULES

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

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


query of text to number format.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Problem With Timer-inVBA

2015-02-02 Thread Soumyendu Paul
I have  seen it ; look into code after going back home
On Feb 2, 2015 3:58 PM, "Vaibhav Joshi"  wrote:

> Great, pl note i have replaced your code..
>
> On Mon, Feb 2, 2015 at 3:53 PM, Soumyendu Paul 
> wrote:
>
>> Thanks Vaibhav it's working
>> On Feb 2, 2015 12:23 PM, "Vaibhav Joshi"  wrote:
>>
>>> Hi Soumyendu..
>>>
>>> check this..
>>>
>>> Cheers!!
>>>
>>> On Mon, Feb 2, 2015 at 10:58 AM, Soumyendu Paul 
>>> wrote:
>>>
>>>> Please help!!
>>>> On Feb 2, 2015 7:21 AM, "Soumyendu Paul" 
>>>> wrote:
>>>>
>>>>> I have already shared file please see attachment
>>>>> On Feb 2, 2015 3:27 AM, "Paul Schreiner" 
>>>>> wrote:
>>>>>
>>>>>> Can you share the file?
>>>>>> How are you using/displaying a timer?
>>>>>>
>>>>>> you said you're using a selectionchange event, but what type of timer
>>>>>> are you using?
>>>>>>
>>>>>> *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:* Soumyendu Paul 
>>>>>> *To:* excel-macros@googlegroups.com
>>>>>> *Sent:* Sunday, February 1, 2015 3:51 PM
>>>>>> *Subject:* $$Excel-Macros$$ Problem With Timer-inVBA
>>>>>>
>>>>>> I have developed a timer using selection change event. But problem is
>>>>>> how to stop timer using command button while timer is runng.
>>>>>>
>>>>>> please help!
>>>>>> File attached
>>>>>> --
>>>>>> 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 atten

Re: $$Excel-Macros$$ Problem With Timer-inVBA

2015-02-02 Thread Vaibhav Joshi
Great, pl note i have replaced your code..

On Mon, Feb 2, 2015 at 3:53 PM, Soumyendu Paul 
wrote:

> Thanks Vaibhav it's working
> On Feb 2, 2015 12:23 PM, "Vaibhav Joshi"  wrote:
>
>> Hi Soumyendu..
>>
>> check this..
>>
>> Cheers!!
>>
>> On Mon, Feb 2, 2015 at 10:58 AM, Soumyendu Paul 
>> wrote:
>>
>>> Please help!!
>>> On Feb 2, 2015 7:21 AM, "Soumyendu Paul"  wrote:
>>>
>>>> I have already shared file please see attachment
>>>> On Feb 2, 2015 3:27 AM, "Paul Schreiner" 
>>>> wrote:
>>>>
>>>>> Can you share the file?
>>>>> How are you using/displaying a timer?
>>>>>
>>>>> you said you're using a selectionchange event, but what type of timer
>>>>> are you using?
>>>>>
>>>>> *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:* Soumyendu Paul 
>>>>> *To:* excel-macros@googlegroups.com
>>>>> *Sent:* Sunday, February 1, 2015 3:51 PM
>>>>> *Subject:* $$Excel-Macros$$ Problem With Timer-inVBA
>>>>>
>>>>> I have developed a timer using selection change event. But problem is
>>>>> how to stop timer using command button while timer is runng.
>>>>>
>>>>> please help!
>>>>> File attached
>>>>> --
>>>>> 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

Re: $$Excel-Macros$$ Problem With Timer-inVBA

2015-02-02 Thread Soumyendu Paul
Thanks Vaibhav it's working
On Feb 2, 2015 12:23 PM, "Vaibhav Joshi"  wrote:

> Hi Soumyendu..
>
> check this..
>
> Cheers!!
>
> On Mon, Feb 2, 2015 at 10:58 AM, Soumyendu Paul 
> wrote:
>
>> Please help!!
>> On Feb 2, 2015 7:21 AM, "Soumyendu Paul"  wrote:
>>
>>> I have already shared file please see attachment
>>> On Feb 2, 2015 3:27 AM, "Paul Schreiner"  wrote:
>>>
>>>> Can you share the file?
>>>> How are you using/displaying a timer?
>>>>
>>>> you said you're using a selectionchange event, but what type of timer
>>>> are you using?
>>>>
>>>> *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:* Soumyendu Paul 
>>>> *To:* excel-macros@googlegroups.com
>>>> *Sent:* Sunday, February 1, 2015 3:51 PM
>>>> *Subject:* $$Excel-Macros$$ Problem With Timer-inVBA
>>>>
>>>> I have developed a timer using selection change event. But problem is
>>>> how to stop timer using command button while timer is runng.
>>>>
>>>> please help!
>>>> File attached
>>>> --
>>>> 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 thi

Re: $$Excel-Macros$$ Problem With Timer-inVBA

2015-02-01 Thread Vaibhav Joshi
Hi Soumyendu..

check this..

Cheers!!

On Mon, Feb 2, 2015 at 10:58 AM, Soumyendu Paul 
wrote:

> Please help!!
> On Feb 2, 2015 7:21 AM, "Soumyendu Paul"  wrote:
>
>> I have already shared file please see attachment
>> On Feb 2, 2015 3:27 AM, "Paul Schreiner"  wrote:
>>
>>> Can you share the file?
>>> How are you using/displaying a timer?
>>>
>>> you said you're using a selectionchange event, but what type of timer
>>> are you using?
>>>
>>> *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:* Soumyendu Paul 
>>> *To:* excel-macros@googlegroups.com
>>> *Sent:* Sunday, February 1, 2015 3:51 PM
>>> *Subject:* $$Excel-Macros$$ Problem With Timer-inVBA
>>>
>>> I have developed a timer using selection change event. But problem is
>>> how to stop timer using command button while timer is runng.
>>>
>>> please help!
>>> File attached
>>> --
>>> 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 th

Re: $$Excel-Macros$$ Problem With Timer-inVBA

2015-02-01 Thread Soumyendu Paul
Please help!!
On Feb 2, 2015 7:21 AM, "Soumyendu Paul"  wrote:

> I have already shared file please see attachment
> On Feb 2, 2015 3:27 AM, "Paul Schreiner"  wrote:
>
>> Can you share the file?
>> How are you using/displaying a timer?
>>
>> you said you're using a selectionchange event, but what type of timer are
>> you using?
>>
>> *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:* Soumyendu Paul 
>> *To:* excel-macros@googlegroups.com
>> *Sent:* Sunday, February 1, 2015 3:51 PM
>> *Subject:* $$Excel-Macros$$ Problem With Timer-inVBA
>>
>> I have developed a timer using selection change event. But problem is how
>> to stop timer using command button while timer is runng.
>>
>> please help!
>> File attached
>> --
>> 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$$ Problem With Timer-inVBA

2015-02-01 Thread Soumyendu Paul
I have already shared file please see attachment
On Feb 2, 2015 3:27 AM, "Paul Schreiner"  wrote:

> Can you share the file?
> How are you using/displaying a timer?
>
> you said you're using a selectionchange event, but what type of timer are
> you using?
>
> *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:* Soumyendu Paul 
> *To:* excel-macros@googlegroups.com
> *Sent:* Sunday, February 1, 2015 3:51 PM
> *Subject:* $$Excel-Macros$$ Problem With Timer-inVBA
>
> I have developed a timer using selection change event. But problem is how
> to stop timer using command button while timer is runng.
>
> please help!
> File attached
> --
> 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$$ Problem With Timer-inVBA

2015-02-01 Thread Paul Schreiner
Can you share the file?
How are you using/displaying a timer?

you said you're using a selectionchange event, but what type of timer are you 
using?

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: Soumyendu Paul 
>To: excel-macros@googlegroups.com 
>Sent: Sunday, February 1, 2015 3:51 PM
>Subject: $$Excel-Macros$$ Problem With Timer-inVBA
>  
>
>
>I have developed a timer using selection change event. But problem is how to 
>stop timer using command button while timer is runng.
>
>
>please help!
>File attached
-- 
>Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
>=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
>https://www.facebook.com/discussexcel
> 
>FORUM RULES
> 
>1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
>Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
>quick attention or may not be answered.
>2) Don't post a question in the thread of another member.
>3) Don't post questions regarding breaking or bypassing any security measure.
>4) Acknowledge the responses you receive, good or bad.
>5) Jobs posting is not allowed.
>6) Sharing copyrighted material and their links is not allowed.
> 
>NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
>members are not responsible for any loss.
>--- 
>You received this message because you are subscribed to the Google Groups "MS 
>EXCEL AND VBA MACROS" group.
>To unsubscribe from this group and stop receiving emails from it, send an 
>email to excel-macros+unsubscr...@googlegroups.com.
>To post to this group, send email to excel-macros@googlegroups.com.
>Visit this group at http://groups.google.com/group/excel-macros.
>For more options, visit https://groups.google.com/d/optout.
>
>
>

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

FORUM RULES

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

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


$$Excel-Macros$$ Problem With Timer-inVBA

2015-02-01 Thread Soumyendu Paul
I have developed a timer using selection change event. But problem is how
to stop timer using command button while timer is runng.

please help!
File attached

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


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


Re: $$Excel-Macros$$ Problem Autofilter Date Range

2015-01-18 Thread Vaibhav Joshi
Change this line to

   FDate = Range("J1")x1
Ldate = Range("J2")x1

Cheers! !
On Jan 18, 2015 3:31 PM, "Ashish Bhalara"  wrote:

> Dear experts,
>
> I want automatic filtering of Date range in cell C11 but the below code is
> not work for Date Field, the output is hide to all data. Please suggest
> what are mistake in coding.
>
> Sub Custom2()
> Dim r As String
> Dim FDate As Date, Ldate As Date
>
> r = Range("j3").Value
>Range("D11").AutoFilter Field:=4, Criteria1:=r
>
> FDate = Range("J1")
> Ldate = Range("J2")
> Range("C11").AutoFilter Field:=3, Criteria1:=">=" & FDate,
> Operator:=xlAnd, Criteria2:="<=" & Ldate
>
> End Sub
>
> Regards.
> Ashish Bhalara
> 9624111822
> P*Please do not print this email unless it is absolutely necessary.
> Spread environmental üawareness.♣♣♣*
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>

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

FORUM RULES

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

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


$$Excel-Macros$$ Problem Autofilter Date Range

2015-01-18 Thread Ashish Bhalara
Dear experts,

I want automatic filtering of Date range in cell C11 but the below code is
not work for Date Field, the output is hide to all data. Please suggest
what are mistake in coding.

Sub Custom2()
Dim r As String
Dim FDate As Date, Ldate As Date

r = Range("j3").Value
   Range("D11").AutoFilter Field:=4, Criteria1:=r

FDate = Range("J1")
Ldate = Range("J2")
Range("C11").AutoFilter Field:=3, Criteria1:=">=" & FDate,
Operator:=xlAnd, Criteria2:="<=" & Ldate

End Sub

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

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

FORUM RULES

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

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


Re: $$Excel-Macros$$ Problem in calculating yield to maturity

2014-12-06 Thread Vaibhav Joshi
Check this.

http://www.tvmcalcs.com/calculators/apps/excel_bond_yields
 Dear Friends,

I am new to excel and my query is very small.

I have to calculate yield to maturity for a bond. I am calculating it using
XIRR and yield function in excel. Values are different. XIRR =12.13%
whereas Yield =12.40%

Please advice me what I have done wrong in calculating yield. I have
attached the screenshot.

Thanks in advance.

Regards,
Arjun Gupta

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

FORUM RULES

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

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

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

FORUM RULES

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

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


$$Excel-Macros$$ Problem in calculating yield to maturity

2014-12-05 Thread Arjun S. Gupta
Dear Friends,

I am new to excel and my query is very small.

I have to calculate yield to maturity for a bond. I am calculating it using
XIRR and yield function in excel. Values are different. XIRR =12.13%
whereas Yield =12.40%

Please advice me what I have done wrong in calculating yield. I have
attached the screenshot.

Thanks in advance.

Regards,
Arjun Gupta

-- 
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$$ Problem for copy and paste range in one sheet to other sheet

2014-07-18 Thread Vaibhav Joshi
Cheers!!



On Fri, Jul 18, 2014 at 9:09 PM, renuka chari  wrote:

> Thanks alot sir
>
>
> On Friday, 18 July 2014 14:00:05 UTC+5:30, Vabz wrote:
>
>> Hi
>>
>> PFA
>>
>> Cheers!!
>>
>>
>> On Fri, Jul 18, 2014 at 9:27 AM, renuka chari  wrote:
>>
>>> Dear sir,
>>> i was prepared a macro for autofilter the range based on column a1 in
>>> unique values and
>>> paste this range into sheet2 side by side
>>> in this i have succed in the autofilter the range data but failed to
>>> copy this data into sheet2 side by side
>>> i think may be some logic was missing in secound for loop.
>>> please help
>>>
>>>
>>> On Friday, 18 July 2014 08:25:34 UTC+5:30, pramodb35 wrote:
>>>
 What is error going on..Completely explain


 On Fri, Jul 18, 2014 at 2:00 AM, Renukachari Kasee 
 wrote:

> Dear Experts please help me in this regard.
>
> my macro was not working properly
>
> please help me...its urgent
>
>
>
>
>
>
>
> *(¨`•.•´¨) Always`•.¸(¨`•.•´¨) Keep(¨`•.•´¨)¸.•´
> Smiling!!`•.¸.•´Thanks & Regards´¨)  ¸ •´ ¸.•*´¨)   ¸.•*¨) (¸.•´
> (¸.•*  ♥♥♥...♪♪♪RenukaChari. Kasee...♥♥♥...♪♪♪*
>
> *P Let us do our best to save nature, save water, plant trees, protect
> greenery, keep our surroundings clean, reduce usage of plastics, and use
> renewable energy sources.*
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
> It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like
> Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
> Advice will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners
> and members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google
> Groups "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to excel-macros...@googlegroups.com.
> To post to this group, send email to excel-...@googlegroups.com.
>
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/d/optout.
>



 --
 *PramodSingh*

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

Re: $$Excel-Macros$$ Problem for copy and paste range in one sheet to other sheet

2014-07-18 Thread renuka chari
Thanks alot sir

On Friday, 18 July 2014 14:00:05 UTC+5:30, Vabz wrote:
>
> Hi
>
> PFA
>
> Cheers!!
>
>
> On Fri, Jul 18, 2014 at 9:27 AM, renuka chari  > wrote:
>
>> Dear sir,
>> i was prepared a macro for autofilter the range based on column a1 in 
>> unique values and 
>> paste this range into sheet2 side by side
>> in this i have succed in the autofilter the range data but failed to copy 
>> this data into sheet2 side by side
>> i think may be some logic was missing in secound for loop.
>> please help
>>  
>>
>> On Friday, 18 July 2014 08:25:34 UTC+5:30, pramodb35 wrote:
>>
>>> What is error going on..Completely explain 
>>>
>>>
>>> On Fri, Jul 18, 2014 at 2:00 AM, Renukachari Kasee  
>>> wrote:
>>>
 Dear Experts please help me in this regard. 

 my macro was not working properly

 please help me...its urgent

  





 *(¨`•.•´¨) Always`•.¸(¨`•.•´¨) Keep(¨`•.•´¨)¸.•´ Smiling!!`•.¸.•´Thanks 
 & Regards´¨)  ¸ •´ ¸.•*´¨)   ¸.•*¨) (¸.•´  (¸.•*  
 ♥♥♥...♪♪♪RenukaChari. Kasee...♥♥♥...♪♪♪*
  
 *P Let us do our best to save nature, save water, plant trees, protect 
 greenery, keep our surroundings clean, reduce usage of plastics, and use 
 renewable energy sources.*
  
 -- 
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? 
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
 https://www.facebook.com/discussexcel
  
 FORUM RULES
  
 1) Use concise, accurate thread titles. Poor thread titles, like Please 
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice 
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security 
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.
  
 NOTE : Don't ever post confidential data in a workbook. Forum owners 
 and members are not responsible for any loss.
 --- 
 You received this message because you are subscribed to the Google 
 Groups "MS EXCEL AND VBA MACROS" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to excel-macros...@googlegroups.com.
 To post to this group, send email to excel-...@googlegroups.com.

 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.

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

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

FORUM RULES

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

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

Re: $$Excel-Macros$$ Problem for copy and paste range in one sheet to other sheet

2014-07-18 Thread Vaibhav Joshi
Hi

PFA

Cheers!!


On Fri, Jul 18, 2014 at 9:27 AM, renuka chari  wrote:

> Dear sir,
> i was prepared a macro for autofilter the range based on column a1 in
> unique values and
> paste this range into sheet2 side by side
> in this i have succed in the autofilter the range data but failed to copy
> this data into sheet2 side by side
> i think may be some logic was missing in secound for loop.
> please help
>
>
> On Friday, 18 July 2014 08:25:34 UTC+5:30, pramodb35 wrote:
>
>> What is error going on..Completely explain
>>
>>
>> On Fri, Jul 18, 2014 at 2:00 AM, Renukachari Kasee 
>> wrote:
>>
>>> Dear Experts please help me in this regard.
>>>
>>> my macro was not working properly
>>>
>>> please help me...its urgent
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> *(¨`•.•´¨) Always`•.¸(¨`•.•´¨) Keep(¨`•.•´¨)¸.•´ Smiling!!`•.¸.•´Thanks
>>> & Regards´¨)  ¸ •´ ¸.•*´¨)   ¸.•*¨) (¸.•´  (¸.•*
>>> ♥♥♥...♪♪♪RenukaChari. Kasee...♥♥♥...♪♪♪*
>>>
>>> *P Let us do our best to save nature, save water, plant trees, protect
>>> greenery, keep our surroundings clean, reduce usage of plastics, and use
>>> renewable energy sources.*
>>>
>>> --
>>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
>>> It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>>> https://www.facebook.com/discussexcel
>>>
>>> FORUM RULES
>>>
>>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>>> will not get quick attention or may not be answered.
>>> 2) Don't post a question in the thread of another member.
>>> 3) Don't post questions regarding breaking or bypassing any security
>>> measure.
>>> 4) Acknowledge the responses you receive, good or bad.
>>> 5) Jobs posting is not allowed.
>>> 6) Sharing copyrighted material and their links is not allowed.
>>>
>>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>>> members are not responsible for any loss.
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "MS EXCEL AND VBA MACROS" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to excel-macros...@googlegroups.com.
>>> To post to this group, send email to excel-...@googlegroups.com.
>>>
>>> Visit this group at http://groups.google.com/group/excel-macros.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> *PramodSingh*
>>
>  --
> 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/o

Re: $$Excel-Macros$$ Problem for copy and paste range in one sheet to other sheet

2014-07-17 Thread renuka chari
Dear sir,
i was prepared a macro for autofilter the range based on column a1 in 
unique values and 
paste this range into sheet2 side by side
in this i have succed in the autofilter the range data but failed to copy 
this data into sheet2 side by side
i think may be some logic was missing in secound for loop.
please help
 

On Friday, 18 July 2014 08:25:34 UTC+5:30, pramodb35 wrote:

> What is error going on..Completely explain 
>
>
> On Fri, Jul 18, 2014 at 2:00 AM, Renukachari Kasee  > wrote:
>
>> Dear Experts please help me in this regard. 
>>
>> my macro was not working properly
>>
>> please help me...its urgent
>>
>>  
>>
>>
>>
>>
>>
>> *(¨`•.•´¨) Always`•.¸(¨`•.•´¨) Keep(¨`•.•´¨)¸.•´ Smiling!!`•.¸.•´Thanks & 
>> Regards´¨)  ¸ •´ ¸.•*´¨)   ¸.•*¨) (¸.•´  (¸.•*  
>> ♥♥♥...♪♪♪RenukaChari. Kasee...♥♥♥...♪♪♪*
>>  
>> *P Let us do our best to save nature, save water, plant trees, protect 
>> greenery, keep our surroundings clean, reduce usage of plastics, and use 
>> renewable energy sources.*
>>
>> -- 
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
>> https://www.facebook.com/discussexcel
>>  
>> FORUM RULES
>>  
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please 
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice 
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security 
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>  
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and 
>> members are not responsible for any loss.
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to excel-macros...@googlegroups.com .
>> To post to this group, send email to excel-...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> *PramodSingh*
>

-- 
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$$ Problem for copy and paste range in one sheet to other sheet

2014-07-17 Thread Pramod Singh
What is error going on..Completely explain


On Fri, Jul 18, 2014 at 2:00 AM, Renukachari Kasee 
wrote:

> Dear Experts please help me in this regard.
>
> my macro was not working properly
>
> please help me...its urgent
>
>
>
>
>
>
>
> *(¨`•.•´¨) Always`•.¸(¨`•.•´¨) Keep(¨`•.•´¨)¸.•´ Smiling!!`•.¸.•´Thanks &
> Regards´¨)  ¸ •´ ¸.•*´¨)   ¸.•*¨) (¸.•´  (¸.•*
> ♥♥♥...♪♪♪RenukaChari. Kasee...♥♥♥...♪♪♪*
>
> *P Let us do our best to save nature, save water, plant trees, protect
> greenery, keep our surroundings clean, reduce usage of plastics, and use
> renewable energy sources.*
>
> --
> 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.
>



-- 
*PramodSingh*

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

FORUM RULES

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

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


$$Excel-Macros$$ Problem for copy and paste range in one sheet to other sheet

2014-07-17 Thread Renukachari Kasee
Dear Experts please help me in this regard.

my macro was not working properly

please help me...its urgent







*(¨`•.•´¨) Always`•.¸(¨`•.•´¨) Keep(¨`•.•´¨)¸.•´ Smiling!!`•.¸.•´Thanks &
Regards´¨)  ¸ •´ ¸.•*´¨)   ¸.•*¨) (¸.•´  (¸.•*
♥♥♥...♪♪♪RenukaChari. Kasee...♥♥♥...♪♪♪*

*P Let us do our best to save nature, save water, plant trees, protect
greenery, keep our surroundings clean, reduce usage of plastics, and use
renewable energy sources.*

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


Copy and Past down by down.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Problem with Advanced Filter

2014-02-26 Thread Anil Gawli
 Dear Hilary,

U have to release the earlier filter i.e clear filter criteria and
then apply the fresh one.

Warm Regards,
Gawli Anil.

On Thu, Feb 27, 2014 at 9:06 AM, mrExcel4u  wrote:
> Plz share your workbook
>
> Thanks & regards,
>
> www.MrExcel4U.com
>
>
> On Thu, Feb 27, 2014 at 2:06 AM, Hilary Lomotey  wrote:
>>
>> i have written a macro to extract couple of data from another sheet with
>> advanced filter
>>
>> 'extracting equity statement
>> Sheet24.Range("EqtyPDB").AdvancedFilter Action:=xlFilterCopy,
>> CriteriaRange:=Sheet19.Range( _
>> "CW1:CX2"), CopyToRange:=Sheet19.Range("CN1:CU1"), Unique:=False
>>
>>
>> immediately after this line of code i call another extraction out of the
>> above extraction to extract some unique data from this
>>
>> Sub exprice()
>> With Worksheets("Valuation")
>> .Range("CP1:CP" & .Range("CP1").End(xlDown).Row).AdvancedFilter _
>> xlFilterCopy, , .Range("a14"), True
>> End With
>> End Sub
>>
>>
>> extract of the main code looks like below where i call EQstatement  and
>> then i Call exprice afterwards. the problem is that exprice does not work, i
>> tried to figure it out and what i suspected was that one i call EQstatement,
>> when i call exprice after that the criteria for EQstatement still remains in
>> the advanced filter as am calling exprice, so the macro doesnt work, however
>> if i manually go to advanced filter on the data menu and enter the list
>> range and the copy to range, leaving the criteria range blank the extraction
>> is perfect however i noticed that the criteria for the EQstatement is always
>> showing as such when you run the adv filter with the criteria included it
>> doesnt work,
>> pls how do i resolve this issue. thanks
>>
>> Sub equtyVal()
>> Application.ScreenUpdating = False
>> Sheet19.Range("A14:k140").Clear
>>
>> Sheet19.Range("DA2:Dk2").Copy Destination:=Sheet19.Range("A14") 'copy
>> titles
>> Call EQstatement
>>
>> If Sheet19.Range("cn2").Value = "" Then
>> Exit Sub
>> Else
>> 'extract unique equities
>> Call exprice
>> Dim pus As Long
>>
>>
>> --
>> 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 Advic

Re: $$Excel-Macros$$ Problem with Advanced Filter

2014-02-26 Thread mrExcel4u
Plz share your workbook

Thanks & regards,

www.MrExcel4U.com 


On Thu, Feb 27, 2014 at 2:06 AM, Hilary Lomotey  wrote:

> i have written a macro to extract couple of data from another sheet with
> advanced filter
>
> 'extracting equity statement
> Sheet24.Range("EqtyPDB").AdvancedFilter Action:=xlFilterCopy,
> CriteriaRange:=Sheet19.Range( _
> "CW1:CX2"), CopyToRange:=Sheet19.Range("CN1:CU1"), Unique:=False
>
>
> immediately after this line of code i call another extraction out of the
> above extraction to extract some unique data from this
>
> Sub exprice()
> With Worksheets("Valuation")
> .Range("CP1:CP" & .Range("CP1").End(xlDown).Row).AdvancedFilter _
> xlFilterCopy, , .Range("a14"), True
> End With
> End Sub
>
>
> extract of the main code looks like below where i call EQstatement  and
> then i Call exprice afterwards. the problem is that exprice does not work,
> i tried to figure it out and what i suspected was that one i call
> EQstatement, when i call exprice after that the criteria for EQstatement
> still remains in the advanced filter as am calling exprice, so the macro
> doesnt work, however if i manually go to advanced filter on the data menu
> and enter the list range and the copy to range, leaving the criteria range
> blank the extraction is perfect however i noticed that the criteria for the
> EQstatement is always showing as such when you run the adv filter with the
> criteria included it doesnt work,
> pls how do i resolve this issue. thanks
>
> Sub equtyVal()
> Application.ScreenUpdating = False
> Sheet19.Range("A14:k140").Clear
>
> Sheet19.Range("DA2:Dk2").Copy Destination:=Sheet19.Range("A14") 'copy
> titles
> Call EQstatement
>
> If Sheet19.Range("cn2").Value = "" Then
> Exit Sub
> Else
> 'extract unique equities
> Call exprice
> Dim pus As Long
>
>
>  --
> 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.


$$Excel-Macros$$ Problem with Advanced Filter

2014-02-26 Thread Hilary Lomotey
i have written a macro to extract couple of data from another sheet with
advanced filter

'extracting equity statement
Sheet24.Range("EqtyPDB").AdvancedFilter Action:=xlFilterCopy,
CriteriaRange:=Sheet19.Range( _
"CW1:CX2"), CopyToRange:=Sheet19.Range("CN1:CU1"), Unique:=False


immediately after this line of code i call another extraction out of the
above extraction to extract some unique data from this

Sub exprice()
With Worksheets("Valuation")
.Range("CP1:CP" & .Range("CP1").End(xlDown).Row).AdvancedFilter _
xlFilterCopy, , .Range("a14"), True
End With
End Sub


extract of the main code looks like below where i call EQstatement  and
then i Call exprice afterwards. the problem is that exprice does not work,
i tried to figure it out and what i suspected was that one i call
EQstatement, when i call exprice after that the criteria for EQstatement
still remains in the advanced filter as am calling exprice, so the macro
doesnt work, however if i manually go to advanced filter on the data menu
and enter the list range and the copy to range, leaving the criteria range
blank the extraction is perfect however i noticed that the criteria for the
EQstatement is always showing as such when you run the adv filter with the
criteria included it doesnt work,
pls how do i resolve this issue. thanks

Sub equtyVal()
Application.ScreenUpdating = False
Sheet19.Range("A14:k140").Clear

Sheet19.Range("DA2:Dk2").Copy Destination:=Sheet19.Range("A14") 'copy titles
Call EQstatement

If Sheet19.Range("cn2").Value = "" Then
Exit Sub
Else
'extract unique equities
Call exprice
Dim pus As Long

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

FORUM RULES

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

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


$$Excel-Macros$$ problem with for loop

2014-02-22 Thread ravi


I am strugglig with the problem. Here is the image 1  after selecting one 
of element in listbox and then if I click delete material (commandbutton).




It has to delete the select material in sheet 2 and has to cut the element 
below and move to 1 row above as shown in figure 2.




At the same time it has to delete the entire respective column and 
remaining column has to be cut and place in column before in sheet 3 as 
shown in figure 3




For that I had wrote the program which is below 

Private Sub CommandButton5_Click()

Dim i, j, k, m, n As Integer

i = ListBox1.ListIndex

j = Sheet2.Cells(1, 39).Value

k = j - i

For k = 1 To k

Sheet2.Cells(k + i + 1, 1) = Sheet2.Cells(k + i + 2, 1)

Sheet2.Cells(k + i + 1, 2) = Sheet2.Cells(k + i + 2, 2)

Next k

m = Worksheets("sheet3").Cells(1, i + 2).Value

For m = 1 To m + 2

Worksheets("sheet3").Cells(m, i + 2).ClearContents

Next m

n = Sheet3.Cells(1, i + 3).Value

For k = 1 To k

For n = 1 To n + 2

Sheet3.Cells(n, k + 1 + i) = Sheet3.Cells(n, k + 2 + i)

Next n

Next k

Sheet2.Cells(1, 39).Value = Sheet2.Cells(1, 39).Value - 1

End Sub

 

When I click the delete commandbutton5 the result is as shown in figure 
below

In sheet2




 

In sheet 3




For loop is running only one time after that it got terminated. If I split 
the 1st for loop and execute it.it is running nice what I meant to do. If I 
combine another for loop or If I add msgbox at top it misbehaving. 

I tried with do while loop also it also doing same thing.

Anyone can help me what is the actual mistake I am doing here and how to 
get ride of this problem or suggest me the easier method than this it will 
be helpful.  I am beginner to vba programming ,so if your answer is simple 
and more explanatory manner means very helpful.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/groups/opt_out.


Re: $$Excel-Macros$$ problem

2013-12-23 Thread Ashish Kumar
Dear Sudhir,

Welcome.

Thanks & Regards,
Ashish

On Monday, 23 December 2013, SUDHIR VERMA wrote:

> thankx Ashish
>
>
> On 15 December 2013 19:10, Ashish Kumar 
>  'kumar.ashish...@gmail.com');>
> > wrote:
>
>> Dear Sudhir,
>>
>> Go to file option then click on options tab then click on language button
>> then select your language english and save it.
>>
>> Thanks,
>> Ashish
>>
>>
>> On Saturday, 14 December 2013, SUDHIR VERMA wrote:
>>
>>> Dear All,
>>>
>>> i am suffer problem in excel, when i type any key then generate Urdu
>>> word.
>>> please resolve this.
>>>
>>> --
>>> 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 > 'cvml', 'excel-macros%2bunsubscr...@googlegroups.com');>.
>> To post to this group, send email to 
>> excel-macros@googlegroups.com> '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  'cvml', 'excel-macros%2bunsubscr...@googlegroups.com');>.
> To post to this group, send email to 
> excel-macros@googlegroups.com '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

Re: $$Excel-Macros$$ problem

2013-12-23 Thread SUDHIR VERMA
thankx Ashish


On 15 December 2013 19:10, Ashish Kumar  wrote:

> Dear Sudhir,
>
> Go to file option then click on options tab then click on language button
> then select your language english and save it.
>
> Thanks,
> Ashish
>
>
> On Saturday, 14 December 2013, SUDHIR VERMA wrote:
>
>> Dear All,
>>
>> i am suffer problem in excel, when i type any key then generate Urdu word.
>> please resolve this.
>>
>> --
>> 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$$ problem

2013-12-15 Thread Ashish Kumar
Dear Sudhir,

Go to file option then click on options tab then click on language button
then select your language english and save it.

Thanks,
Ashish

On Saturday, 14 December 2013, SUDHIR VERMA wrote:

> Dear All,
>
> i am suffer problem in excel, when i type any key then generate Urdu word.
> please resolve this.
>
> --
> 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  'cvml', 'excel-macros%2bunsubscr...@googlegroups.com');>.
> To post to this group, send email to 
> excel-macros@googlegroups.com '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.


$$Excel-Macros$$ problem

2013-12-14 Thread SUDHIR VERMA
Dear All,

i am suffer problem in excel, when i type any key then generate Urdu word.
please resolve this.

-- 
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$$ Problem - Tag in Cell

2013-08-02 Thread vba
Hi

I didnt get you by that, pl share sample file.

Thanks


On Sat, Aug 3, 2013 at 12:06 PM, Anil Saxena wrote:

>
> Dear Expert,
>
> How can remove the Tag in a Cell, becouse I want delimited.
> --
>
> *Anil Saxena*
>
>
>  --
> 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.




$$Excel-Macros$$ Problem - Tag in Cell

2013-08-02 Thread Anil Saxena
Dear Expert,

How can remove the Tag in a Cell, becouse I want delimited.
-- 

*Anil Saxena*

-- 
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$$ Problem with searching through rows and their associated columns

2013-07-04 Thread ashish koul
can u share the sample file with us

Regards
Ashish


On Thu, Jul 4, 2013 at 7:07 AM, Brian Yam  wrote:

> Dear All,
>
> I am new to VBA programming
> I happen to need great and urgent help on a project that I am currently
> working on
> I would like to search through the worksheet, and find "N" or "TR" on row 6
> Then, For every cell in the column of "N" or "TR"
> if all the cells are blank, then delete/ hide the column
> if the cells are not blank, highlight the cells that are in blank
> This sounds easy but I think it requires two for loops.
> I appreciate any contributions!
>
>
>  Sub checkandhide()
> Set r = Range("6:6")
> Rows("7:7").Select
> For Each Cell In r
>  Selection.Find(What:="N", After:=ActiveCell, LookIn:=xlFormulas,
> LookAt _
> :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
> MatchCase:= _
> False, MatchByte:=False, SearchFormat:=False).Activate
> 'search for N
> Application.Run "deletecolumn"
> Next
> End Sub
> *Sub deletecolumn()
> ActiveCell.Offset(6, 0).Select
> Range(Selection, Selection.End(xlDown)).Select
> For Each Cell.Value In Selection
> If Cell.Value = "" Then
> 'some code that let the loop goes on
> Else
> ActiveCell.Columns.Delete
> End If
> Next
> End Sub*
>
> 
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible 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.




$$Excel-Macros$$ Problem with searching through rows and their associated columns

2013-07-03 Thread Brian Yam
Dear All,
 
I am new to VBA programming
I happen to need great and urgent help on a project that I am currently 
working on
I would like to search through the worksheet, and find "N" or "TR" on row 6
Then, For every cell in the column of "N" or "TR"
if all the cells are blank, then delete/ hide the column
if the cells are not blank, highlight the cells that are in blank
This sounds easy but I think it requires two for loops.
I appreciate any contributions!
 
   
 Sub checkandhide()  
Set r = Range("6:6")  
Rows("7:7").Select  
For Each Cell In r  
 Selection.Find(What:="N", After:=ActiveCell, LookIn:=xlFormulas, LookAt_  
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase
:= _  
False, MatchByte:=False, SearchFormat:=False).Activate  
'search for N  
Application.Run "deletecolumn"  
Next  
End Sub  
*Sub deletecolumn()
ActiveCell.Offset(6, 0).Select
Range(Selection, Selection.End(xlDown)).Select
For Each Cell.Value In Selection
If Cell.Value = "" Then
'some code that let the loop goes on
Else
ActiveCell.Columns.Delete
End If
Next
End Sub*
 


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

FORUM RULES

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

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




$$Excel-Macros$$ Problem with addresslocal property in setting chart series

2013-06-27 Thread Martien Janssen
Dear all
 
I have the following code to set the name and x and y properties of a chart 
series. These need to refer to a certain worksheet (T1, T2, etc identified 
by the parameter Tsel) and to a certain range on these sheet.
 
 .SeriesCollection(nl).Name = "='T" & TSel & "'!" & 
Cells(38, j).AddressLocal(ReferenceStyle:=xlR1C1)
.SeriesCollection(nl).XValues = "='T" & TSel & "'!" & 
Range(Cells(40, 1), Cells(40 + nr - 1, 
1)).AddressLocal(ReferenceStyle:=xlR1C1)
.SeriesCollection(nl).Values = "='T" & TSel & "'!" & 
Range(Cells(40, j), Cells(40 + nr - 1, 
j)).AddressLocal(ReferenceStyle:=xlR1C1)
 
I have used the AddressLocal property to create references in the local 
language. When I run the code above on an English version, the code runs 
OK. On a German Excel version the code fails on line 2. If I evaluate the 
string which is created it seems to be OK (like ='T2'!Z40S1:Z100S1). Line 1 
works so it seems that the proper worksheet is found.
 
Any suggestion is appreciated 
Martien

 
 

-- 
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$$ Problem in Line Graph

2013-05-31 Thread Chandra Shekar
Hi,

Thanks for you reply I tried that option too but I will not get graph when
I do that and even I dont want to use this option as I am plotting multi
graphs in different sheets.

Regards,

Chandra Shekar B

On Thu, May 30, 2013 at 9:05 PM, xlstime  wrote:

>  Hi Chander,
>
> Change Switch Row/Column
>
> Right click in chart then go to select data then Switch Row/Column
>
> Hope it's fulfill your requirement
>
> .
>
> Enjoy
> Team XLS
>
>
>
> On Thu, May 30, 2013 at 8:02 PM, Chandra Shekar <
> chandrashekarb@gmail.com> wrote:
>
>> Hi,
>>
>> I have issue with line graph *X axis title* and same is attached.
>>
>> In sheet1 I have only one record and X axis shows A2 & A3 but in Sheet2 I
>> have many records and it shows value as per column 1. Kindly let me know
>> what I am doing is correct or anything need to be changed
>>
>> Thanks in advance.
>>
>> Regards,
>>
>> Chandra Shekar B
>>
>> --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to excel-macros+unsubscr...@googlegroups.com.
>> To post to this group, send email to excel-macros@googlegroups.com.
>> Visit this group at http://groups.google.com/group/excel-macros?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Problem in Line Graph

2013-05-30 Thread xlstime
Hi Chander,

Change Switch Row/Column

Right click in chart then go to select data then Switch Row/Column

Hope it's fulfill your requirement

.

Enjoy
Team XLS



On Thu, May 30, 2013 at 8:02 PM, Chandra Shekar <
chandrashekarb@gmail.com> wrote:

> Hi,
>
> I have issue with line graph *X axis title* and same is attached.
>
> In sheet1 I have only one record and X axis shows A2 & A3 but in Sheet2 I
> have many records and it shows value as per column 1. Kindly let me know
> what I am doing is correct or anything need to be changed
>
> Thanks in advance.
>
> Regards,
>
> Chandra Shekar B
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

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

FORUM RULES

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

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




Copy of Book1.xls
Description: MS-Excel spreadsheet


$$Excel-Macros$$ Problem in Line Graph

2013-05-30 Thread Chandra Shekar
Hi,

I have issue with line graph *X axis title* and same is attached.

In sheet1 I have only one record and X axis shows A2 & A3 but in Sheet2 I
have many records and it shows value as per column 1. Kindly let me know
what I am doing is correct or anything need to be changed

Thanks in advance.

Regards,

Chandra Shekar B

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




Book1.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread David Grugeon
Is it just this file which is slow or are all excel files slow?
Is this file slow if you run it on another computer?
What is the file extension?  Xls, xlsb, xlsm,xlsb.
What version of windows?  Including whether it is 32 or 64 bit?
What version of office?  Also 32 or 64
How much memory does the computer have?
Is the excel program run from your computer or from a server?  E.g. If you
have a thin client.
Is your swap file fixed or variable size?  If fixed what is the maximum
size?
Are there other programs running on your computer that could be slowing it
down?  Look at CPU usage in task manager.
Are there any macros in your personal.xls(m) whic could be running
repeatedly?

I hope the answer to one of these questions helps to pinpoint the problem.



On Friday, 24 May 2013, Prabhu Pinky wrote:

> But my bad time..even I copied the data which contains formula and formats
> into new sheet. Same problem I face I copied the cell which contains
> only the data...
>
> Prabhu R
> On May 23, 2013 9:41 PM, "Bé Trần Văn"  wrote:
>
> Maybe because your spreadsheet data using multiple functions, or select
> and delete the blank column on the right, select and delete the blank line
> underneath the sheet containing the data, if not all slow sluggish, the 
> ultimate
> solution is a new file, open 1, copy each sheet and select Paste Special
> Values and click OK.
>
> 2013/5/23 Divaker Pandey 
>
>  are using formula in sheet?, i hope there are refrences of some other
> files that may be closed. it may reason you file taking more time to
> calculate.
>
>
>
>
> On Thu, May 23, 2013 at 8:05 PM, Divaker Pandey wrote:
>
> are using formula in sheet?, i hope there are refrences of some other
> files.
>
>
> On Thu, May 23, 2013 at 5:49 PM, P.VIJAYKUMAR wrote:
>
>  Respected Prabhu,
>
> You are saying that the sheet is companies sheet.Is is password protected
> or are any user rights restricted to used and to modify or make any changes
> to the file.Check also for version based compatibility issues because
> earlier version had lower data input and processing capabilities compared
> to the latest versions.Increasing you systems processor speed may also
> solve the problem.If you do not have much data in the file crate a fresh
> file with the same data because many time by some error the file gets
>  corrupted and the new file works perfectly alright without any problems.To
> know how much processing memory and time is  consumed by excel during the
> stuck time start the Task manager and go to processes tab and search for
> excel in the process. I think the processing time and memory used will be
> more during that period.the problem can only be dealt with specifically if
> only we know what exactly is causing the problem.
>
> Regards,
> VIJAYKUMAR
>
>
> On Thu, May 23, 2013 at 5:23 PM, Prabhu Pinky wrote:
>
> No david..that sheet contains no macros, even very less formula. Only the
> thing is some cells have formatted...
>
> Prabhu R
>  On May 23, 2013 5:20 PM, "David Grugeon"  wrote:
>
> Also do you have macros which are run when changes are made to the sheets.
>  It may be possible to reorganise them so they run faster or are not
> triggered so readily.
>
>  Regards
> David Grugeon
>
>
>
> On 23 May 2013
>
>

-- 
Regards
David Grugeon

-- 
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$$ Problem in file..?

2013-05-23 Thread Prabhu Pinky
But my bad time..even I copied the data which contains formula and formats
into new sheet. Same problem I face I copied the cell which contains
only the data...

Prabhu R
On May 23, 2013 9:41 PM, "Bé Trần Văn"  wrote:

> Maybe because your spreadsheet data using multiple functions, or select
> and delete the blank column on the right, select and delete the blank line
> underneath the sheet containing the data, if not all slow sluggish, the 
> ultimate
> solution is a new file, open 1, copy each sheet and select Paste Special
> Values and click OK.
>
> 2013/5/23 Divaker Pandey 
>
>>  are using formula in sheet?, i hope there are refrences of some other
>> files that may be closed. it may reason you file taking more time to
>> calculate.
>>
>>
>>
>>
>> On Thu, May 23, 2013 at 8:05 PM, Divaker Pandey wrote:
>>
>>> are using formula in sheet?, i hope there are refrences of some other
>>> files.
>>>
>>>
>>> On Thu, May 23, 2013 at 5:49 PM, P.VIJAYKUMAR wrote:
>>>
  Respected Prabhu,

 You are saying that the sheet is companies sheet.Is is password
 protected or are any user rights restricted to used and to modify or make
 any changes to the file.Check also for version based compatibility issues
 because earlier version had lower data input and processing capabilities
 compared to the latest versions.Increasing you systems processor speed may
 also solve the problem.If you do not have much data in the file crate a
 fresh file with the same data because many time by some error the file gets
  corrupted and the new file works perfectly alright without any problems.To
 know how much processing memory and time is  consumed by excel during the
 stuck time start the Task manager and go to processes tab and search for
 excel in the process. I think the processing time and memory used will be
 more during that period.the problem can only be dealt with specifically if
 only we know what exactly is causing the problem.

 Regards,
 VIJAYKUMAR


 On Thu, May 23, 2013 at 5:23 PM, Prabhu Pinky 
 wrote:

> No david..that sheet contains no macros, even very less formula. Only
> the thing is some cells have formatted...
>
> Prabhu R
>  On May 23, 2013 5:20 PM, "David Grugeon" 
> wrote:
>
>> Also do you have macros which are run when changes are made to the
>> sheets.  It may be possible to reorganise them so they run faster or are
>> not triggered so readily.
>>
>>  Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 21:47, David Grugeon  wrote:
>>
>>> Try setting the calculation to Manual.  Then see if Cut and Paste
>>> still takes a lot of time.  It could be that there are a lot of formulas
>>> having to be recalculated when there is a change to the worksheet.  If 
>>> this
>>> is identified as the cause you may be able to get a gain by redesigning 
>>> hr
>>> worksheets, or by keeping calculation turned off and pressing F9 when 
>>> you
>>> want it to calculate.
>>>
>>>  Regards
>>> David Grugeon
>>>
>>>
>>>
>>> On 23 May 2013 21:26, Prabhu Pinky  wrote:
>>>
 thanks vijay, lemme try this too.

 but my doubt is if already "Use all the processors on this
 computer" option is selected. then..?


 Regards,
 Prabhu R



 On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:

>  Respected Prabhu,
>
> Please  go to excel options button and from there go to the
> advanced tab and under that go to the formulas section.The third 
> point will
> contain how many processors are used for excel calculations.check the 
> radio
> button to use all the processors for calculations.This may boost up ur
> speed a little bit.There may be various other reasons for slowness of 
> the
> processes like compatibility issues,macros errors or virus etc.I 
> frequently
> face this problem when the workbook contains plenty of calculations 
> and
> number of sheets and every small step even a copy and format takes 
> many
> minutes to accomplish.
>
> Regards,
> Vijaykumar
>
>
> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky <
> prabhupin...@gmail.com> wrote:
>
>> Hi Abhishek : thanks for the idea. i will try this one.
>>
>>
>> David : i am unable attach the file, because it is violation in
>> our office.
>>
>>
>>
>>
>>
>> On 23 May 2013 13:39, David Grugeon  wrote:
>>
>>> Can't guess without seeing the file.  Can you attach it?
>>>
>>>  Regards
>>> David Grugeon
>>>
>>>
>>>
>>> On 

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread Bé Trần Văn
Maybe because your spreadsheet data using multiple functions, or select and
delete the blank column on the right, select and delete the blank line
underneath the sheet containing the data, if not all slow sluggish,
the ultimate
solution is a new file, open 1, copy each sheet and select Paste Special
Values and click OK.

2013/5/23 Divaker Pandey 

>  are using formula in sheet?, i hope there are refrences of some other
> files that may be closed. it may reason you file taking more time to
> calculate.
>
>
>
>
> On Thu, May 23, 2013 at 8:05 PM, Divaker Pandey wrote:
>
>> are using formula in sheet?, i hope there are refrences of some other
>> files.
>>
>>
>> On Thu, May 23, 2013 at 5:49 PM, P.VIJAYKUMAR wrote:
>>
>>>  Respected Prabhu,
>>>
>>> You are saying that the sheet is companies sheet.Is is password
>>> protected or are any user rights restricted to used and to modify or make
>>> any changes to the file.Check also for version based compatibility issues
>>> because earlier version had lower data input and processing capabilities
>>> compared to the latest versions.Increasing you systems processor speed may
>>> also solve the problem.If you do not have much data in the file crate a
>>> fresh file with the same data because many time by some error the file gets
>>>  corrupted and the new file works perfectly alright without any problems.To
>>> know how much processing memory and time is  consumed by excel during the
>>> stuck time start the Task manager and go to processes tab and search for
>>> excel in the process. I think the processing time and memory used will be
>>> more during that period.the problem can only be dealt with specifically if
>>> only we know what exactly is causing the problem.
>>>
>>> Regards,
>>> VIJAYKUMAR
>>>
>>>
>>> On Thu, May 23, 2013 at 5:23 PM, Prabhu Pinky wrote:
>>>
 No david..that sheet contains no macros, even very less formula. Only
 the thing is some cells have formatted...

 Prabhu R
  On May 23, 2013 5:20 PM, "David Grugeon"  wrote:

> Also do you have macros which are run when changes are made to the
> sheets.  It may be possible to reorganise them so they run faster or are
> not triggered so readily.
>
>  Regards
> David Grugeon
>
>
>
> On 23 May 2013 21:47, David Grugeon  wrote:
>
>> Try setting the calculation to Manual.  Then see if Cut and Paste
>> still takes a lot of time.  It could be that there are a lot of formulas
>> having to be recalculated when there is a change to the worksheet.  If 
>> this
>> is identified as the cause you may be able to get a gain by redesigning 
>> hr
>> worksheets, or by keeping calculation turned off and pressing F9 when you
>> want it to calculate.
>>
>>  Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 21:26, Prabhu Pinky  wrote:
>>
>>> thanks vijay, lemme try this too.
>>>
>>> but my doubt is if already "Use all the processors on this computer"
>>> option is selected. then..?
>>>
>>>
>>> Regards,
>>> Prabhu R
>>>
>>>
>>>
>>> On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:
>>>
  Respected Prabhu,

 Please  go to excel options button and from there go to the
 advanced tab and under that go to the formulas section.The third point 
 will
 contain how many processors are used for excel calculations.check the 
 radio
 button to use all the processors for calculations.This may boost up ur
 speed a little bit.There may be various other reasons for slowness of 
 the
 processes like compatibility issues,macros errors or virus etc.I 
 frequently
 face this problem when the workbook contains plenty of calculations and
 number of sheets and every small step even a copy and format takes many
 minutes to accomplish.

 Regards,
 Vijaykumar


 On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky <
 prabhupin...@gmail.com> wrote:

> Hi Abhishek : thanks for the idea. i will try this one.
>
>
> David : i am unable attach the file, because it is violation in
> our office.
>
>
>
>
>
> On 23 May 2013 13:39, David Grugeon  wrote:
>
>> Can't guess without seeing the file.  Can you attach it?
>>
>>  Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 16:49, Prabhu Pinky wrote:
>>
>>> Hi experts,
>>> I have one excel file. Size is below 1mb. Even though it is very
>>> slow working in that file. If I do copy paste any single cell, it 
>>> takes too
>>> much time.
>>>
>>> What could be the reasons...?
>>>
>>> Prabhu R
>>>
>>> --
>>> Are you 

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread Divaker Pandey
are using formula in sheet?, i hope there are refrences of some other files
that may be closed. it may reason you file taking more time to calculate.




On Thu, May 23, 2013 at 8:05 PM, Divaker Pandey  wrote:

> are using formula in sheet?, i hope there are refrences of some other
> files.
>
>
> On Thu, May 23, 2013 at 5:49 PM, P.VIJAYKUMAR wrote:
>
>> Respected Prabhu,
>>
>> You are saying that the sheet is companies sheet.Is is password protected
>> or are any user rights restricted to used and to modify or make any changes
>> to the file.Check also for version based compatibility issues because
>> earlier version had lower data input and processing capabilities compared
>> to the latest versions.Increasing you systems processor speed may also
>> solve the problem.If you do not have much data in the file crate a fresh
>> file with the same data because many time by some error the file gets
>>  corrupted and the new file works perfectly alright without any problems.To
>> know how much processing memory and time is  consumed by excel during the
>> stuck time start the Task manager and go to processes tab and search for
>> excel in the process. I think the processing time and memory used will be
>> more during that period.the problem can only be dealt with specifically if
>> only we know what exactly is causing the problem.
>>
>> Regards,
>> VIJAYKUMAR
>>
>>
>> On Thu, May 23, 2013 at 5:23 PM, Prabhu Pinky wrote:
>>
>>> No david..that sheet contains no macros, even very less formula. Only
>>> the thing is some cells have formatted...
>>>
>>> Prabhu R
>>> On May 23, 2013 5:20 PM, "David Grugeon"  wrote:
>>>
 Also do you have macros which are run when changes are made to the
 sheets.  It may be possible to reorganise them so they run faster or are
 not triggered so readily.

 Regards
 David Grugeon



 On 23 May 2013 21:47, David Grugeon  wrote:

> Try setting the calculation to Manual.  Then see if Cut and Paste
> still takes a lot of time.  It could be that there are a lot of formulas
> having to be recalculated when there is a change to the worksheet.  If 
> this
> is identified as the cause you may be able to get a gain by redesigning hr
> worksheets, or by keeping calculation turned off and pressing F9 when you
> want it to calculate.
>
> Regards
> David Grugeon
>
>
>
> On 23 May 2013 21:26, Prabhu Pinky  wrote:
>
>> thanks vijay, lemme try this too.
>>
>> but my doubt is if already "Use all the processors on this computer"
>> option is selected. then..?
>>
>>
>> Regards,
>> Prabhu R
>>
>>
>>
>> On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:
>>
>>> Respected Prabhu,
>>>
>>> Please  go to excel options button and from there go to the advanced
>>> tab and under that go to the formulas section.The third point will 
>>> contain
>>> how many processors are used for excel calculations.check the radio 
>>> button
>>> to use all the processors for calculations.This may boost up ur speed a
>>> little bit.There may be various other reasons for slowness of the 
>>> processes
>>> like compatibility issues,macros errors or virus etc.I frequently face 
>>> this
>>> problem when the workbook contains plenty of calculations and number of
>>> sheets and every small step even a copy and format takes many minutes to
>>> accomplish.
>>>
>>> Regards,
>>> Vijaykumar
>>>
>>>
>>> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky <
>>> prabhupin...@gmail.com> wrote:
>>>
 Hi Abhishek : thanks for the idea. i will try this one.


 David : i am unable attach the file, because it is violation in our
 office.





 On 23 May 2013 13:39, David Grugeon  wrote:

> Can't guess without seeing the file.  Can you attach it?
>
> Regards
> David Grugeon
>
>
>
> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>
>> Hi experts,
>> I have one excel file. Size is below 1mb. Even though it is very
>> slow working in that file. If I do copy paste any single cell, it 
>> takes too
>> much time.
>>
>> What could be the reasons...?
>>
>> 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) 

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread Divaker Pandey
are using formula in sheet?, i hope there are refrences of some other files.


On Thu, May 23, 2013 at 5:49 PM, P.VIJAYKUMAR  wrote:

> Respected Prabhu,
>
> You are saying that the sheet is companies sheet.Is is password protected
> or are any user rights restricted to used and to modify or make any changes
> to the file.Check also for version based compatibility issues because
> earlier version had lower data input and processing capabilities compared
> to the latest versions.Increasing you systems processor speed may also
> solve the problem.If you do not have much data in the file crate a fresh
> file with the same data because many time by some error the file gets
>  corrupted and the new file works perfectly alright without any problems.To
> know how much processing memory and time is  consumed by excel during the
> stuck time start the Task manager and go to processes tab and search for
> excel in the process. I think the processing time and memory used will be
> more during that period.the problem can only be dealt with specifically if
> only we know what exactly is causing the problem.
>
> Regards,
> VIJAYKUMAR
>
>
> On Thu, May 23, 2013 at 5:23 PM, Prabhu Pinky wrote:
>
>> No david..that sheet contains no macros, even very less formula. Only the
>> thing is some cells have formatted...
>>
>> Prabhu R
>> On May 23, 2013 5:20 PM, "David Grugeon"  wrote:
>>
>>> Also do you have macros which are run when changes are made to the
>>> sheets.  It may be possible to reorganise them so they run faster or are
>>> not triggered so readily.
>>>
>>> Regards
>>> David Grugeon
>>>
>>>
>>>
>>> On 23 May 2013 21:47, David Grugeon  wrote:
>>>
 Try setting the calculation to Manual.  Then see if Cut and Paste still
 takes a lot of time.  It could be that there are a lot of formulas having
 to be recalculated when there is a change to the worksheet.  If this is
 identified as the cause you may be able to get a gain by redesigning hr
 worksheets, or by keeping calculation turned off and pressing F9 when you
 want it to calculate.

 Regards
 David Grugeon



 On 23 May 2013 21:26, Prabhu Pinky  wrote:

> thanks vijay, lemme try this too.
>
> but my doubt is if already "Use all the processors on this computer"
> option is selected. then..?
>
>
> Regards,
> Prabhu R
>
>
>
> On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:
>
>> Respected Prabhu,
>>
>> Please  go to excel options button and from there go to the advanced
>> tab and under that go to the formulas section.The third point will 
>> contain
>> how many processors are used for excel calculations.check the radio 
>> button
>> to use all the processors for calculations.This may boost up ur speed a
>> little bit.There may be various other reasons for slowness of the 
>> processes
>> like compatibility issues,macros errors or virus etc.I frequently face 
>> this
>> problem when the workbook contains plenty of calculations and number of
>> sheets and every small step even a copy and format takes many minutes to
>> accomplish.
>>
>> Regards,
>> Vijaykumar
>>
>>
>> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky > > wrote:
>>
>>> Hi Abhishek : thanks for the idea. i will try this one.
>>>
>>>
>>> David : i am unable attach the file, because it is violation in our
>>> office.
>>>
>>>
>>>
>>>
>>>
>>> On 23 May 2013 13:39, David Grugeon  wrote:
>>>
 Can't guess without seeing the file.  Can you attach it?

 Regards
 David Grugeon



 On 23 May 2013 16:49, Prabhu Pinky  wrote:

> Hi experts,
> I have one excel file. Size is below 1mb. Even though it is very
> slow working in that file. If I do copy paste any single cell, it 
> takes too
> much time.
>
> What could be the reasons...?
>
> 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 confide

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread P.VIJAYKUMAR
Respected Prabhu,

You are saying that the sheet is companies sheet.Is is password protected
or are any user rights restricted to used and to modify or make any changes
to the file.Check also for version based compatibility issues because
earlier version had lower data input and processing capabilities compared
to the latest versions.Increasing you systems processor speed may also
solve the problem.If you do not have much data in the file crate a fresh
file with the same data because many time by some error the file gets
 corrupted and the new file works perfectly alright without any problems.To
know how much processing memory and time is  consumed by excel during the
stuck time start the Task manager and go to processes tab and search for
excel in the process. I think the processing time and memory used will be
more during that period.the problem can only be dealt with specifically if
only we know what exactly is causing the problem.

Regards,
VIJAYKUMAR


On Thu, May 23, 2013 at 5:23 PM, Prabhu Pinky wrote:

> No david..that sheet contains no macros, even very less formula. Only the
> thing is some cells have formatted...
>
> Prabhu R
> On May 23, 2013 5:20 PM, "David Grugeon"  wrote:
>
>> Also do you have macros which are run when changes are made to the
>> sheets.  It may be possible to reorganise them so they run faster or are
>> not triggered so readily.
>>
>> Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 21:47, David Grugeon  wrote:
>>
>>> Try setting the calculation to Manual.  Then see if Cut and Paste still
>>> takes a lot of time.  It could be that there are a lot of formulas having
>>> to be recalculated when there is a change to the worksheet.  If this is
>>> identified as the cause you may be able to get a gain by redesigning hr
>>> worksheets, or by keeping calculation turned off and pressing F9 when you
>>> want it to calculate.
>>>
>>> Regards
>>> David Grugeon
>>>
>>>
>>>
>>> On 23 May 2013 21:26, Prabhu Pinky  wrote:
>>>
 thanks vijay, lemme try this too.

 but my doubt is if already "Use all the processors on this computer"
 option is selected. then..?


 Regards,
 Prabhu R



 On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:

> Respected Prabhu,
>
> Please  go to excel options button and from there go to the advanced
> tab and under that go to the formulas section.The third point will contain
> how many processors are used for excel calculations.check the radio button
> to use all the processors for calculations.This may boost up ur speed a
> little bit.There may be various other reasons for slowness of the 
> processes
> like compatibility issues,macros errors or virus etc.I frequently face 
> this
> problem when the workbook contains plenty of calculations and number of
> sheets and every small step even a copy and format takes many minutes to
> accomplish.
>
> Regards,
> Vijaykumar
>
>
> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky 
> wrote:
>
>> Hi Abhishek : thanks for the idea. i will try this one.
>>
>>
>> David : i am unable attach the file, because it is violation in our
>> office.
>>
>>
>>
>>
>>
>> On 23 May 2013 13:39, David Grugeon  wrote:
>>
>>> Can't guess without seeing the file.  Can you attach it?
>>>
>>> Regards
>>> David Grugeon
>>>
>>>
>>>
>>> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>>>
 Hi experts,
 I have one excel file. Size is below 1mb. Even though it is very
 slow working in that file. If I do copy paste any single cell, it 
 takes too
 much time.

 What could be the reasons...?

 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,

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread Prabhu Pinky
No david..that sheet contains no macros, even very less formula. Only the
thing is some cells have formatted...

Prabhu R
On May 23, 2013 5:20 PM, "David Grugeon"  wrote:

> Also do you have macros which are run when changes are made to the sheets.
>  It may be possible to reorganise them so they run faster or are not
> triggered so readily.
>
> Regards
> David Grugeon
>
>
>
> On 23 May 2013 21:47, David Grugeon  wrote:
>
>> Try setting the calculation to Manual.  Then see if Cut and Paste still
>> takes a lot of time.  It could be that there are a lot of formulas having
>> to be recalculated when there is a change to the worksheet.  If this is
>> identified as the cause you may be able to get a gain by redesigning hr
>> worksheets, or by keeping calculation turned off and pressing F9 when you
>> want it to calculate.
>>
>> Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 21:26, Prabhu Pinky  wrote:
>>
>>> thanks vijay, lemme try this too.
>>>
>>> but my doubt is if already "Use all the processors on this computer"
>>> option is selected. then..?
>>>
>>>
>>> Regards,
>>> Prabhu R
>>>
>>>
>>>
>>> On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:
>>>
 Respected Prabhu,

 Please  go to excel options button and from there go to the advanced
 tab and under that go to the formulas section.The third point will contain
 how many processors are used for excel calculations.check the radio button
 to use all the processors for calculations.This may boost up ur speed a
 little bit.There may be various other reasons for slowness of the processes
 like compatibility issues,macros errors or virus etc.I frequently face this
 problem when the workbook contains plenty of calculations and number of
 sheets and every small step even a copy and format takes many minutes to
 accomplish.

 Regards,
 Vijaykumar


 On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky 
 wrote:

> Hi Abhishek : thanks for the idea. i will try this one.
>
>
> David : i am unable attach the file, because it is violation in our
> office.
>
>
>
>
>
> On 23 May 2013 13:39, David Grugeon  wrote:
>
>> Can't guess without seeing the file.  Can you attach it?
>>
>> Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>>
>>> Hi experts,
>>> I have one excel file. Size is below 1mb. Even though it is very
>>> slow working in that file. If I do copy paste any single cell, it takes 
>>> too
>>> much time.
>>>
>>> What could be the reasons...?
>>>
>>> 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.
>>>
>>>
>>>
>>
>>  --
>> 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 dat

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread David Grugeon
Also do you have macros which are run when changes are made to the sheets.
 It may be possible to reorganise them so they run faster or are not
triggered so readily.

Regards
David Grugeon



On 23 May 2013 21:47, David Grugeon  wrote:

> Try setting the calculation to Manual.  Then see if Cut and Paste still
> takes a lot of time.  It could be that there are a lot of formulas having
> to be recalculated when there is a change to the worksheet.  If this is
> identified as the cause you may be able to get a gain by redesigning hr
> worksheets, or by keeping calculation turned off and pressing F9 when you
> want it to calculate.
>
> Regards
> David Grugeon
>
>
>
> On 23 May 2013 21:26, Prabhu Pinky  wrote:
>
>> thanks vijay, lemme try this too.
>>
>> but my doubt is if already "Use all the processors on this computer"
>> option is selected. then..?
>>
>>
>> Regards,
>> Prabhu R
>>
>>
>>
>> On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:
>>
>>> Respected Prabhu,
>>>
>>> Please  go to excel options button and from there go to the advanced tab
>>> and under that go to the formulas section.The third point will contain how
>>> many processors are used for excel calculations.check the radio button to
>>> use all the processors for calculations.This may boost up ur speed a little
>>> bit.There may be various other reasons for slowness of the processes like
>>> compatibility issues,macros errors or virus etc.I frequently face this
>>> problem when the workbook contains plenty of calculations and number of
>>> sheets and every small step even a copy and format takes many minutes to
>>> accomplish.
>>>
>>> Regards,
>>> Vijaykumar
>>>
>>>
>>> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky wrote:
>>>
 Hi Abhishek : thanks for the idea. i will try this one.


 David : i am unable attach the file, because it is violation in our
 office.





 On 23 May 2013 13:39, David Grugeon  wrote:

> Can't guess without seeing the file.  Can you attach it?
>
> Regards
> David Grugeon
>
>
>
> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>
>> Hi experts,
>> I have one excel file. Size is below 1mb. Even though it is very slow
>> working in that file. If I do copy paste any single cell, it takes too 
>> much
>> time.
>>
>> What could be the reasons...?
>>
>> 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.
>>
>>
>>
>
>  --
> 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+u

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread David Grugeon
Try setting the calculation to Manual.  Then see if Cut and Paste still
takes a lot of time.  It could be that there are a lot of formulas having
to be recalculated when there is a change to the worksheet.  If this is
identified as the cause you may be able to get a gain by redesigning hr
worksheets, or by keeping calculation turned off and pressing F9 when you
want it to calculate.

Regards
David Grugeon



On 23 May 2013 21:26, Prabhu Pinky  wrote:

> thanks vijay, lemme try this too.
>
> but my doubt is if already "Use all the processors on this computer"
> option is selected. then..?
>
>
> Regards,
> Prabhu R
>
>
>
> On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:
>
>> Respected Prabhu,
>>
>> Please  go to excel options button and from there go to the advanced tab
>> and under that go to the formulas section.The third point will contain how
>> many processors are used for excel calculations.check the radio button to
>> use all the processors for calculations.This may boost up ur speed a little
>> bit.There may be various other reasons for slowness of the processes like
>> compatibility issues,macros errors or virus etc.I frequently face this
>> problem when the workbook contains plenty of calculations and number of
>> sheets and every small step even a copy and format takes many minutes to
>> accomplish.
>>
>> Regards,
>> Vijaykumar
>>
>>
>> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky wrote:
>>
>>> Hi Abhishek : thanks for the idea. i will try this one.
>>>
>>>
>>> David : i am unable attach the file, because it is violation in our
>>> office.
>>>
>>>
>>>
>>>
>>>
>>> On 23 May 2013 13:39, David Grugeon  wrote:
>>>
 Can't guess without seeing the file.  Can you attach it?

 Regards
 David Grugeon



 On 23 May 2013 16:49, Prabhu Pinky  wrote:

> Hi experts,
> I have one excel file. Size is below 1mb. Even though it is very slow
> working in that file. If I do copy paste any single cell, it takes too 
> much
> time.
>
> What could be the reasons...?
>
> 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.
>
>
>

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

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread Prabhu Pinky
thanks vijay, lemme try this too.

but my doubt is if already "Use all the processors on this computer" option
is selected. then..?


Regards,
Prabhu R


On 23 May 2013 16:48, P.VIJAYKUMAR  wrote:

> Respected Prabhu,
>
> Please  go to excel options button and from there go to the advanced tab
> and under that go to the formulas section.The third point will contain how
> many processors are used for excel calculations.check the radio button to
> use all the processors for calculations.This may boost up ur speed a little
> bit.There may be various other reasons for slowness of the processes like
> compatibility issues,macros errors or virus etc.I frequently face this
> problem when the workbook contains plenty of calculations and number of
> sheets and every small step even a copy and format takes many minutes to
> accomplish.
>
> Regards,
> Vijaykumar
>
>
> On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky wrote:
>
>> Hi Abhishek : thanks for the idea. i will try this one.
>>
>>
>> David : i am unable attach the file, because it is violation in our
>> office.
>>
>>
>>
>>
>>
>> On 23 May 2013 13:39, David Grugeon  wrote:
>>
>>> Can't guess without seeing the file.  Can you attach it?
>>>
>>> Regards
>>> David Grugeon
>>>
>>>
>>>
>>> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>>>
 Hi experts,
 I have one excel file. Size is below 1mb. Even though it is very slow
 working in that file. If I do copy paste any single cell, it takes too much
 time.

 What could be the reasons...?

 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.



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

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread P.VIJAYKUMAR
Respected Prabhu,

Please  go to excel options button and from there go to the advanced tab
and under that go to the formulas section.The third point will contain how
many processors are used for excel calculations.check the radio button to
use all the processors for calculations.This may boost up ur speed a little
bit.There may be various other reasons for slowness of the processes like
compatibility issues,macros errors or virus etc.I frequently face this
problem when the workbook contains plenty of calculations and number of
sheets and every small step even a copy and format takes many minutes to
accomplish.

Regards,
Vijaykumar


On Thu, May 23, 2013 at 4:15 PM, Prabhu Pinky wrote:

> Hi Abhishek : thanks for the idea. i will try this one.
>
>
> David : i am unable attach the file, because it is violation in our office.
>
>
>
>
>
> On 23 May 2013 13:39, David Grugeon  wrote:
>
>> Can't guess without seeing the file.  Can you attach it?
>>
>> Regards
>> David Grugeon
>>
>>
>>
>> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>>
>>> Hi experts,
>>> I have one excel file. Size is below 1mb. Even though it is very slow
>>> working in that file. If I do copy paste any single cell, it takes too much
>>> time.
>>>
>>> What could be the reasons...?
>>>
>>> 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.
>>>
>>>
>>>
>>
>>  --
>> 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 t

Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread Prabhu Pinky
Hi Abhishek : thanks for the idea. i will try this one.


David : i am unable attach the file, because it is violation in our office.




On 23 May 2013 13:39, David Grugeon  wrote:

> Can't guess without seeing the file.  Can you attach it?
>
> Regards
> David Grugeon
>
>
>
> On 23 May 2013 16:49, Prabhu Pinky  wrote:
>
>> Hi experts,
>> I have one excel file. Size is below 1mb. Even though it is very slow
>> working in that file. If I do copy paste any single cell, it takes too much
>> time.
>>
>> What could be the reasons...?
>>
>> 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.
>>
>>
>>
>
>  --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

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

FORUM RULES

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

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




Re: $$Excel-Macros$$ Problem in file..?

2013-05-23 Thread David Grugeon
Can't guess without seeing the file.  Can you attach it?

Regards
David Grugeon



On 23 May 2013 16:49, Prabhu Pinky  wrote:

> Hi experts,
> I have one excel file. Size is below 1mb. Even though it is very slow
> working in that file. If I do copy paste any single cell, it takes too much
> time.
>
> What could be the reasons...?
>
> 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.
>
>
>

-- 
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$$ Problem in file..?

2013-05-23 Thread Abhishek Jain
Not sure if this is your case but:

Press F5 > Special > Objects and if Excel finds anything, press Delete.

Might help.

On Thu, May 23, 2013 at 12:19 PM, Prabhu Pinky wrote:

> Hi experts,
> I have one excel file. Size is below 1mb. Even though it is very slow
> working in that file. If I do copy paste any single cell, it takes too much
> time.
>
> What could be the reasons...?
>
> 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.
>
>
>

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

FORUM RULES

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

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




$$Excel-Macros$$ Problem in file..?

2013-05-22 Thread Prabhu Pinky
Hi experts,
I have one excel file. Size is below 1mb. Even though it is very slow
working in that file. If I do copy paste any single cell, it takes too much
time.

What could be the reasons...?

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.




Re: $$Excel-Macros$$ Problem in conditional formatting *

2013-02-14 Thread Saravanan Samy
Hi,

   I hope you are looking for the column "M". Please change the formula 
reference as "M:M" instead of "A".


Regards,
Saravanan R.



On Wednesday, 13 February 2013 21:40:01 UTC+5:30, hilary lomotey wrote:
>
>
> Hello 
>
>
> Pls see attached
>
> HTH
>
>
> On Wed, Feb 13, 2013 at 12:44 PM, Kenil Gala 
> > wrote:
>
>>  [image: Boxbe]  This message is 
>> eligible for Automatic Cleanup! (ken...@yahoo.com ) Add 
>> cleanup 
>> rule|
>>  More 
>> info
>>  
>>  
>>  sorry forgot to attached the file in previous mail.
>>
>>
>>Hi group,
>> I am facing a small problem in conditional formatting.
>> i am not able to set the same rules for the entire coloum.
>> Pls find the file attached.
>>  
>> Thanks in adv.
>>
>>  -- 
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
>> https://www.facebook.com/discussexcel
>>  
>> FORUM RULES
>>  
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please 
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice 
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security 
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>  
>> NOTE : Don't ever post confidential data in a workbook. Forum owners and 
>> members are not responsible for any loss.
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to excel-macros...@googlegroups.com .
>> To post to this group, send email to excel-...@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/excel-macros?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>  
>>  
>>
>>
>

-- 
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$$ Problem in conditional formatting *

2013-02-13 Thread Hilary Lomotey
Hello


Pls see attached

HTH


On Wed, Feb 13, 2013 at 12:44 PM, Kenil Gala  wrote:

>  [image: Boxbe]  This message is eligible
> for Automatic Cleanup! (keni...@yahoo.com) Add cleanup 
> rule|
>  More
> info
>
>  sorry forgot to attached the file in previous mail.
>
>
>Hi group,
> I am facing a small problem in conditional formatting.
> i am not able to set the same rules for the entire coloum.
> Pls find the file attached.
>
> Thanks in adv.
>
>  --
> 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.




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


$$Excel-Macros$$ Problem in conditional formatting

2013-02-13 Thread Kenil Gala
 sorry forgot to attached the file in previous mail.








Hi group,
I am facing a small problem in conditional formatting.
i am not able to set the same rules for the entire coloum.
Pls find the file attached.
 
Thanks in adv.

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




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


$$Excel-Macros$$ Problem in conditional formatting

2013-02-13 Thread Kenil Gala
Hi group,
I am facing a small problem in conditional formatting.
i am not able to set the same rules for the entire coloum.
Pls find the file attached.
 
Thanks in adv.

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

FORUM RULES

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

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




$$Excel-Macros$$ Problem with Macro - need review by expert

2012-07-27 Thread CAN
I have a simple excel sheet (attached file)   The file is sorted by date 
and it shows information about deposits made in a day.  Sometimes a deposit 
might have more than 1 transaction,  sometimes it is just one transaction.
The data is as follows:  Date, Unit ID, Amount & Check number (there other 
columns (B, D & F) which are hidden for formatting purposes.
 
I have a macro ( see if below ) which I run to group and format the data.  
It simple does the following:
 
1) adds color to the heading, calculates a subtotal based on date, draws a 
line at the end of each date and colors the cell where the subtotal 
calculation is shown.
 
For most part the macro works well,  except that when a day deposit has 
just one item, it doesn't format the cells as when the deposit has more 
than one item.
 
If you run the macro, you'll see that when the deposit has just one item,  
the line to create an indication of "grouping items by day"  does not work, 
and also the subtotal cell is not highlighted in yellow like the others.
 
I would appreciate you suggestions and comments to see if I can have this 
macro works as it is intended
 
Thank you a whole bunch 
 
Here is the macro:
 
Sub Subs_T_Complete()
'
' Subs_T_Complete Macro
' 
'
Sheets("Fixed").Select
Range("F1:F600").Select
Selection.Copy
Sheets("New").Select
Range("F1").Select
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Sheets("Fixed").Select
Range("H1:H600").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("New").Select
Range("H1").Select
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Range("I9").Select
Application.CutCopyMode = False
Application.Run "PERSONAL.XLS!All_together"
Range("A2:G600").Select
Selection.Interior.ColorIndex = xlNone
Columns("H:H").Select
Selection.Style = "Comma"
Range("B1").Select
ActiveCell.FormulaR1C1 = "1"
Range("D1").Select
ActiveCell.FormulaR1C1 = "2"
Range("B1").Select
Selection.Font.ColorIndex = 5
Range("D1").Select
Selection.Font.ColorIndex = 14
Selection.Font.ColorIndex = 5
Range("K2").Select
ActiveSheet.Shapes.AddTextbox(msoTextOrientationHorizontal, 403.5, 
13.5, _
240.75, 33#).Select
Selection.Characters.Text = "Subtotals listed by date"
With Selection.Characters(Start:=1, Length:=24).Font
.Name = "Calibri"
.FontStyle = "Regular"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 1
End With
Range("N5").Select
End Sub

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




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


Re: $$Excel-Macros$$ Problem with excel

2012-06-28 Thread Divaker Pandey
Hi Experts

still waiting for solution

Divaker

On Tue, Jun 26, 2012 at 8:25 PM, Divaker Pandey  wrote:

> but it will lock modification in list through vba.
>
> Divker
>
>
> On Tue, Jun 26, 2012 at 8:23 PM, NOORAIN ANSARI 
> wrote:
>
>> Hi Divaker,
>>
>> I have created a name range "List_Matters",
>>
>> We called it through below coding..
>>
>> Sheet1.lstLookup.ListFillRange = "List_Matters"
>>
>> and in Property Boxt i have marked columnHeads as true.
>>
>>
>> --
>> Thanks & regards,
>> Noorain Ansari
>> www.noorainansari.com
>> www.excelmacroworld.blogspot.com
>>
>> On Tue, Jun 26, 2012 at 8:03 PM, Divaker Pandey 
>> wrote:
>> > Thanks Noorain, i want to list out all company details which match on
>> > entered value in textbox.
>> >
>> > By the way how you added header in listbox.
>> >
>> > Please tell me steps.
>> >
>> > Thanks.
>> >
>> > Divaker
>> >
>> >
>> > On Tue, Jun 26, 2012 at 7:28 PM, ╰» ℓαℓιт мσαнη <
>> mohan.pande...@gmail.com>
>> > wrote:
>> >>
>> >> Hi Divaker,
>> >>
>> >> You query is not cleary mentioned can u please share a file with the
>> >> full description so that we can help u as soon as possible
>> >>
>> >> Regards,
>> >> Lalit Mohan
>> >>
>> >>
>> >> On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey 
>> >> wrote:
>> >> > Hi Experts,
>> >> >
>> >> > Still waiting for your response.
>> >> >
>> >> > Divaker
>> >> >
>> >> >
>> >> > On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey > >
>> >> > wrote:
>> >> >>
>> >> >> Hi Noorain & Experts,
>> >> >>
>> >> >> Thanks for respond. please find attached file.
>> >> >> on tab sheet1 there is two activeX control
>> >> >>
>> >> >> 1. Textbox -txtLookup
>> >> >> 2. ListBox - lstLookup
>> >> >>
>> >> >> if user change value of textbox it search the input string in each
>> >> >> column.
>> >> >> and add in listbox all rows which string matched.
>> >> >>
>> >> >> I want to add headers.
>> >> >>
>> >> >> Please suggest asap.
>> >> >>
>> >> >>
>> >> >> Divaker
>> >> >>
>> >> >>
>> >> >> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI
>> >> >> 
>> >> >> wrote:
>> >> >>>
>> >> >>> Dear Divaker,
>> >> >>>
>> >> >>> Please share your Activelistbox with group.
>> >> >>>
>> >> >>> --
>> >> >>> Thanks & regards,
>> >> >>> Noorain Ansari
>> >> >>> www.noorainansari.com
>> >> >>> www.excelmacroworld.blogspot.com
>> >> >>>
>> >> >>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey <
>> divake...@gmail.com>
>> >> >>> wrote:
>> >> >>> > Hi Ayush,
>> >> >>> >
>> >> >>> > I want to add header column text in Activelistbox through vba.
>> >> >>> >
>> >> >>> > Can you help me how i can add.
>> >> >>> >
>> >> >>> >
>> >> >>> > Thanks.
>> >> >>> >
>> >> >>> > Divaker
>> >> >>> >
>> >> >>> > --
>> >> >>> > -- 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.
>> >> >>>
>> >> >>>
>> >> >>>
>> >> >>>
>> ---

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread Divaker Pandey
but it will lock modification in list through vba.

Divker

On Tue, Jun 26, 2012 at 8:23 PM, NOORAIN ANSARI wrote:

> Hi Divaker,
>
> I have created a name range "List_Matters",
>
> We called it through below coding..
>
> Sheet1.lstLookup.ListFillRange = "List_Matters"
>
> and in Property Boxt i have marked columnHeads as true.
>
>
> --
> Thanks & regards,
> Noorain Ansari
> www.noorainansari.com
> www.excelmacroworld.blogspot.com
>
> On Tue, Jun 26, 2012 at 8:03 PM, Divaker Pandey 
> wrote:
> > Thanks Noorain, i want to list out all company details which match on
> > entered value in textbox.
> >
> > By the way how you added header in listbox.
> >
> > Please tell me steps.
> >
> > Thanks.
> >
> > Divaker
> >
> >
> > On Tue, Jun 26, 2012 at 7:28 PM, ╰» ℓαℓιт мσαнη <
> mohan.pande...@gmail.com>
> > wrote:
> >>
> >> Hi Divaker,
> >>
> >> You query is not cleary mentioned can u please share a file with the
> >> full description so that we can help u as soon as possible
> >>
> >> Regards,
> >> Lalit Mohan
> >>
> >>
> >> On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey 
> >> wrote:
> >> > Hi Experts,
> >> >
> >> > Still waiting for your response.
> >> >
> >> > Divaker
> >> >
> >> >
> >> > On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey 
> >> > wrote:
> >> >>
> >> >> Hi Noorain & Experts,
> >> >>
> >> >> Thanks for respond. please find attached file.
> >> >> on tab sheet1 there is two activeX control
> >> >>
> >> >> 1. Textbox -txtLookup
> >> >> 2. ListBox - lstLookup
> >> >>
> >> >> if user change value of textbox it search the input string in each
> >> >> column.
> >> >> and add in listbox all rows which string matched.
> >> >>
> >> >> I want to add headers.
> >> >>
> >> >> Please suggest asap.
> >> >>
> >> >>
> >> >> Divaker
> >> >>
> >> >>
> >> >> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI
> >> >> 
> >> >> wrote:
> >> >>>
> >> >>> Dear Divaker,
> >> >>>
> >> >>> Please share your Activelistbox with group.
> >> >>>
> >> >>> --
> >> >>> Thanks & regards,
> >> >>> Noorain Ansari
> >> >>> www.noorainansari.com
> >> >>> www.excelmacroworld.blogspot.com
> >> >>>
> >> >>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey <
> divake...@gmail.com>
> >> >>> wrote:
> >> >>> > Hi Ayush,
> >> >>> >
> >> >>> > I want to add header column text in Activelistbox through vba.
> >> >>> >
> >> >>> > Can you help me how i can add.
> >> >>> >
> >> >>> >
> >> >>> > Thanks.
> >> >>> >
> >> >>> > Divaker
> >> >>> >
> >> >>> > --
> >> >>> > -- FORUM RULES (986+ members already BANNED for violation) 1) Use
> >> >>> > concise,
> >> >>> > accurate thread titles. Poor thread titles, like Please Help,
> >> >>> > Urgent,
> >> >>> > Need
> >> >>> > Help, Formula Problem, Code Problem, and Need Advice will not get
> >> >>> > quick
> >> >>> > attention or may not be answered. 2) Don't post a question in the
> >> >>> > thread of
> >> >>> > another member. 3) Don't post questions regarding breaking or
> >> >>> > bypassing
> >> >>> > any
> >> >>> > security measure. 4) Acknowledge the responses you receive, good
> or
> >> >>> > bad. 5)
> >> >>> > Cross-promotion of, or links to, forums competitive to this forum
> in
> >> >>> > signatures are prohibited. NOTE : Don't ever post personal or
> >> >>> > confidential
> >> >>> > data in a workbook. Forum owners and members are not responsible
> for
> >> >>> > any
> >> >>> > loss.
> >> >>> >
> >> >>> >
> >> >>> >
> --
> >> >>> > To post to this group, send email to
> excel-macros@googlegroups.com
> >> >>> > To
> >> >>> > unsubscribe, send a blank email to
> >> >>> > excel-macros+unsubscr...@googlegroups.com
> >> >>>
> >> >>> --
> >> >>> --
> >> >>> FORUM RULES (986+ members already BANNED for violation)
> >> >>>
> >> >>> 1) Use concise, accurate thread titles. Poor thread titles, like
> >> >>> Please
> >> >>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
> >> >>> Advice will
> >> >>> not get quick attention or may not be answered.
> >> >>>
> >> >>> 2) Don't post a question in the thread of another member.
> >> >>>
> >> >>> 3) Don't post questions regarding breaking or bypassing any security
> >> >>> measure.
> >> >>>
> >> >>> 4) Acknowledge the responses you receive, good or bad.
> >> >>>
> >> >>> 5)  Cross-promotion of, or links to, forums competitive to this
> forum
> >> >>> in
> >> >>> signatures are prohibited.
> >> >>>
> >> >>> NOTE  : Don't ever post personal or confidential data in a workbook.
> >> >>> Forum owners and members are not responsible for any loss.
> >> >>>
> >> >>>
> >> >>>
> >> >>>
> --
> >> >>> To post to this group, send email to excel-macros@googlegroups.com
> >> >>>
> >> >>> To unsubscribe, send a blank email to
> >> >>> excel-macros+unsubscr...@googlegroups.com
> >> >>>
> >> >>>
> >> >>
> >> >
> >> > --
> >> > --
> >> > FORUM RULES (986+ members already BANNED 

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread NOORAIN ANSARI
Hi Divaker,

I have created a name range "List_Matters",

We called it through below coding..

Sheet1.lstLookup.ListFillRange = "List_Matters"

and in Property Boxt i have marked columnHeads as true.


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

On Tue, Jun 26, 2012 at 8:03 PM, Divaker Pandey  wrote:
> Thanks Noorain, i want to list out all company details which match on
> entered value in textbox.
>
> By the way how you added header in listbox.
>
> Please tell me steps.
>
> Thanks.
>
> Divaker
>
>
> On Tue, Jun 26, 2012 at 7:28 PM, ╰» ℓαℓιт мσαнη 
> wrote:
>>
>> Hi Divaker,
>>
>> You query is not cleary mentioned can u please share a file with the
>> full description so that we can help u as soon as possible
>>
>> Regards,
>> Lalit Mohan
>>
>>
>> On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey 
>> wrote:
>> > Hi Experts,
>> >
>> > Still waiting for your response.
>> >
>> > Divaker
>> >
>> >
>> > On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey 
>> > wrote:
>> >>
>> >> Hi Noorain & Experts,
>> >>
>> >> Thanks for respond. please find attached file.
>> >> on tab sheet1 there is two activeX control
>> >>
>> >> 1. Textbox -txtLookup
>> >> 2. ListBox - lstLookup
>> >>
>> >> if user change value of textbox it search the input string in each
>> >> column.
>> >> and add in listbox all rows which string matched.
>> >>
>> >> I want to add headers.
>> >>
>> >> Please suggest asap.
>> >>
>> >>
>> >> Divaker
>> >>
>> >>
>> >> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI
>> >> 
>> >> wrote:
>> >>>
>> >>> Dear Divaker,
>> >>>
>> >>> Please share your Activelistbox with group.
>> >>>
>> >>> --
>> >>> Thanks & regards,
>> >>> Noorain Ansari
>> >>> www.noorainansari.com
>> >>> www.excelmacroworld.blogspot.com
>> >>>
>> >>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey 
>> >>> wrote:
>> >>> > Hi Ayush,
>> >>> >
>> >>> > I want to add header column text in Activelistbox through vba.
>> >>> >
>> >>> > Can you help me how i can add.
>> >>> >
>> >>> >
>> >>> > Thanks.
>> >>> >
>> >>> > Divaker
>> >>> >
>> >>> > --
>> >>> > -- FORUM RULES (986+ members already BANNED for violation) 1) Use
>> >>> > concise,
>> >>> > accurate thread titles. Poor thread titles, like Please Help,
>> >>> > Urgent,
>> >>> > Need
>> >>> > Help, Formula Problem, Code Problem, and Need Advice will not get
>> >>> > quick
>> >>> > attention or may not be answered. 2) Don't post a question in the
>> >>> > thread of
>> >>> > another member. 3) Don't post questions regarding breaking or
>> >>> > bypassing
>> >>> > any
>> >>> > security measure. 4) Acknowledge the responses you receive, good or
>> >>> > bad. 5)
>> >>> > Cross-promotion of, or links to, forums competitive to this forum in
>> >>> > signatures are prohibited. NOTE : Don't ever post personal or
>> >>> > confidential
>> >>> > data in a workbook. Forum owners and members are not responsible for
>> >>> > any
>> >>> > loss.
>> >>> >
>> >>> >
>> >>> > --
>> >>> > To post to this group, send email to excel-macros@googlegroups.com
>> >>> > To
>> >>> > unsubscribe, send a blank email to
>> >>> > excel-macros+unsubscr...@googlegroups.com
>> >>>
>> >>> --
>> >>> --
>> >>> FORUM RULES (986+ members already BANNED for violation)
>> >>>
>> >>> 1) Use concise, accurate thread titles. Poor thread titles, like
>> >>> Please
>> >>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
>> >>> Advice will
>> >>> not get quick attention or may not be answered.
>> >>>
>> >>> 2) Don't post a question in the thread of another member.
>> >>>
>> >>> 3) Don't post questions regarding breaking or bypassing any security
>> >>> measure.
>> >>>
>> >>> 4) Acknowledge the responses you receive, good or bad.
>> >>>
>> >>> 5)  Cross-promotion of, or links to, forums competitive to this forum
>> >>> in
>> >>> signatures are prohibited.
>> >>>
>> >>> NOTE  : Don't ever post personal or confidential data in a workbook.
>> >>> Forum owners and members are not responsible for any loss.
>> >>>
>> >>>
>> >>>
>> >>> --
>> >>> To post to this group, send email to excel-macros@googlegroups.com
>> >>>
>> >>> To unsubscribe, send a blank email to
>> >>> excel-macros+unsubscr...@googlegroups.com
>> >>>
>> >>>
>> >>
>> >
>> > --
>> > --
>> > FORUM RULES (986+ members already BANNED for violation)
>> >
>> > 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> > Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> > will
>> > not get quick attention or may not be answered.
>> >
>> > 2) Don't post a question in the thread of another member.
>> >
>> > 3) Don't post questions regarding breaking or bypassing any security
>> > measure.
>> >
>> > 4) Acknowledge the responses you receive, good or bad.
>> >
>> > 5) Cross-promotion of, or links to, foru

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread Divaker Pandey
Noorain,

It will be helpful if you give me VBA code to add header column.

I think listbox used header on the base of assigned range on
ListFillRange  properties.

But it is not make sense to solve my query, because i have 72000 rows, and
take selected rows form them. i could not want write it again on another
place to make dynamic name range. that can be used in ListFillRange
Properties. it will make application slow.


Have you any another clue??


Divaker

On Tue, Jun 26, 2012 at 8:09 PM, Divaker Pandey  wrote:

> Hi Lalit,
>
> I want to list out all company which string match in any column(available
> data)
>
> Divaker
>
>
>
>
> On Tue, Jun 26, 2012 at 8:03 PM, Divaker Pandey wrote:
>
>> Thanks Noorain, i want to list out all company details which match on
>> entered value in textbox.
>>
>> By the way how you added header in listbox.
>>
>> Please tell me steps.
>>
>> Thanks.
>>
>> Divaker
>>
>>
>> On Tue, Jun 26, 2012 at 7:28 PM, ╰» ℓαℓιт мσαнη > > wrote:
>>
>>> Hi Divaker,
>>>
>>> You query is not cleary mentioned can u please share a file with the
>>> full description so that we can help u as soon as possible
>>>
>>> Regards,
>>> Lalit Mohan
>>>
>>>
>>> On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey 
>>> wrote:
>>> > Hi Experts,
>>> >
>>> > Still waiting for your response.
>>> >
>>> > Divaker
>>> >
>>> >
>>> > On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey 
>>> wrote:
>>> >>
>>> >> Hi Noorain & Experts,
>>> >>
>>> >> Thanks for respond. please find attached file.
>>> >> on tab sheet1 there is two activeX control
>>> >>
>>> >> 1. Textbox -txtLookup
>>> >> 2. ListBox - lstLookup
>>> >>
>>> >> if user change value of textbox it search the input string in each
>>> column.
>>> >> and add in listbox all rows which string matched.
>>> >>
>>> >> I want to add headers.
>>> >>
>>> >> Please suggest asap.
>>> >>
>>> >>
>>> >> Divaker
>>> >>
>>> >>
>>> >> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI <
>>> noorain.ans...@gmail.com>
>>> >> wrote:
>>> >>>
>>> >>> Dear Divaker,
>>> >>>
>>> >>> Please share your Activelistbox with group.
>>> >>>
>>> >>> --
>>> >>> Thanks & regards,
>>> >>> Noorain Ansari
>>> >>> www.noorainansari.com
>>> >>> www.excelmacroworld.blogspot.com
>>> >>>
>>> >>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey >> >
>>> >>> wrote:
>>> >>> > Hi Ayush,
>>> >>> >
>>> >>> > I want to add header column text in Activelistbox through vba.
>>> >>> >
>>> >>> > Can you help me how i can add.
>>> >>> >
>>> >>> >
>>> >>> > Thanks.
>>> >>> >
>>> >>> > Divaker
>>> >>> >
>>> >>> > --
>>> >>> > -- 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.comTo
>>> >>> > unsubscribe, send a blank email to
>>> >>> > excel-macros+unsubscr...@googlegroups.com
>>> >>>
>>> >>> --
>>> >>> --
>>> >>> FORUM RULES (986+ members already BANNED for violation)
>>> >>>
>>> >>> 1) Use concise, accurate thread titles. Poor thread titles, like
>>> Please
>>> >>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
>>> Advice will
>>> >>> not get quick attention or may not be answered.
>>> >>>
>>> >>> 2) Don't post a question in the thread of another member.
>>> >>>
>>> >>> 3) Don't post questions regarding breaking or bypassing any security
>>> >>> measure.
>>> >>>
>>> >>> 4) Acknowledge the responses you receive, good or bad.
>>> >>>
>>> >>> 5)  Cross-promotion of, or links to, forums competitive to this
>>> forum in
>>> >>> signatures are prohibited.
>>> >>>
>>> >>> NOTE  : Don't ever post personal or confidential data in a workbook.
>>> >>> Forum owners and members are not responsible for any loss.
>>> >>>
>>> >>>
>>> >>>
>>> --
>>> >>> To post to this group, send email to excel-macros@googlegroups.com
>>> >>>
>>> >>> To unsubscribe, send a blank email to
>>> >>> excel-macros+unsubscr...@googlegroups.com
>>> >>>
>>> >>>
>>> >>
>>> >
>>> > --
>>> > --
>>> > FORUM RULES (986+ members already BANNED for violation)
>>> >
>>> > 1) Use co

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread Divaker Pandey
Hi Lalit,

I want to list out all company which string match in any column(available
data)

Divaker



On Tue, Jun 26, 2012 at 8:03 PM, Divaker Pandey  wrote:

> Thanks Noorain, i want to list out all company details which match on
> entered value in textbox.
>
> By the way how you added header in listbox.
>
> Please tell me steps.
>
> Thanks.
>
> Divaker
>
>
> On Tue, Jun 26, 2012 at 7:28 PM, ╰» ℓαℓιт мσαнη 
> wrote:
>
>> Hi Divaker,
>>
>> You query is not cleary mentioned can u please share a file with the
>> full description so that we can help u as soon as possible
>>
>> Regards,
>> Lalit Mohan
>>
>>
>> On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey 
>> wrote:
>> > Hi Experts,
>> >
>> > Still waiting for your response.
>> >
>> > Divaker
>> >
>> >
>> > On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey 
>> wrote:
>> >>
>> >> Hi Noorain & Experts,
>> >>
>> >> Thanks for respond. please find attached file.
>> >> on tab sheet1 there is two activeX control
>> >>
>> >> 1. Textbox -txtLookup
>> >> 2. ListBox - lstLookup
>> >>
>> >> if user change value of textbox it search the input string in each
>> column.
>> >> and add in listbox all rows which string matched.
>> >>
>> >> I want to add headers.
>> >>
>> >> Please suggest asap.
>> >>
>> >>
>> >> Divaker
>> >>
>> >>
>> >> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI <
>> noorain.ans...@gmail.com>
>> >> wrote:
>> >>>
>> >>> Dear Divaker,
>> >>>
>> >>> Please share your Activelistbox with group.
>> >>>
>> >>> --
>> >>> Thanks & regards,
>> >>> Noorain Ansari
>> >>> www.noorainansari.com
>> >>> www.excelmacroworld.blogspot.com
>> >>>
>> >>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey 
>> >>> wrote:
>> >>> > Hi Ayush,
>> >>> >
>> >>> > I want to add header column text in Activelistbox through vba.
>> >>> >
>> >>> > Can you help me how i can add.
>> >>> >
>> >>> >
>> >>> > Thanks.
>> >>> >
>> >>> > Divaker
>> >>> >
>> >>> > --
>> >>> > -- 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.comTo
>> >>> > unsubscribe, send a blank email to
>> >>> > excel-macros+unsubscr...@googlegroups.com
>> >>>
>> >>> --
>> >>> --
>> >>> FORUM RULES (986+ members already BANNED for violation)
>> >>>
>> >>> 1) Use concise, accurate thread titles. Poor thread titles, like
>> Please
>> >>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
>> Advice will
>> >>> not get quick attention or may not be answered.
>> >>>
>> >>> 2) Don't post a question in the thread of another member.
>> >>>
>> >>> 3) Don't post questions regarding breaking or bypassing any security
>> >>> measure.
>> >>>
>> >>> 4) Acknowledge the responses you receive, good or bad.
>> >>>
>> >>> 5)  Cross-promotion of, or links to, forums competitive to this forum
>> in
>> >>> signatures are prohibited.
>> >>>
>> >>> NOTE  : Don't ever post personal or confidential data in a workbook.
>> >>> Forum owners and members are not responsible for any loss.
>> >>>
>> >>>
>> >>>
>> --
>> >>> To post to this group, send email to excel-macros@googlegroups.com
>> >>>
>> >>> To unsubscribe, send a blank email to
>> >>> excel-macros+unsubscr...@googlegroups.com
>> >>>
>> >>>
>> >>
>> >
>> > --
>> > --
>> > FORUM RULES (986+ members already BANNED for violation)
>> >
>> > 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> > Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will
>> > not get quick attention or may not be answered.
>> >
>> > 2) Don't post a question in the thread of another member.
>> >
>> > 3) Don't post questions regarding breaking or bypassing any security
>> > measure.
>> >
>> > 4) Acknowledge the responses you receive, good or bad.
>> >
>> > 5) Cross-promotion of, or links to, forums competitive to this forum in
>> > signatures are prohibited.
>> >
>> > NOTE : Don't ever post personal or confidential data in a workbook.
>> Forum
>> > owners and members are not responsible for any loss.
>> >
>> >
>> ---

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread Divaker Pandey
Thanks Noorain, i want to list out all company details which match on
entered value in textbox.

By the way how you added header in listbox.

Please tell me steps.

Thanks.

Divaker

On Tue, Jun 26, 2012 at 7:28 PM, ╰» ℓαℓιт мσαнη wrote:

> Hi Divaker,
>
> You query is not cleary mentioned can u please share a file with the
> full description so that we can help u as soon as possible
>
> Regards,
> Lalit Mohan
>
>
> On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey 
> wrote:
> > Hi Experts,
> >
> > Still waiting for your response.
> >
> > Divaker
> >
> >
> > On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey 
> wrote:
> >>
> >> Hi Noorain & Experts,
> >>
> >> Thanks for respond. please find attached file.
> >> on tab sheet1 there is two activeX control
> >>
> >> 1. Textbox -txtLookup
> >> 2. ListBox - lstLookup
> >>
> >> if user change value of textbox it search the input string in each
> column.
> >> and add in listbox all rows which string matched.
> >>
> >> I want to add headers.
> >>
> >> Please suggest asap.
> >>
> >>
> >> Divaker
> >>
> >>
> >> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI <
> noorain.ans...@gmail.com>
> >> wrote:
> >>>
> >>> Dear Divaker,
> >>>
> >>> Please share your Activelistbox with group.
> >>>
> >>> --
> >>> Thanks & regards,
> >>> Noorain Ansari
> >>> www.noorainansari.com
> >>> www.excelmacroworld.blogspot.com
> >>>
> >>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey 
> >>> wrote:
> >>> > Hi Ayush,
> >>> >
> >>> > I want to add header column text in Activelistbox through vba.
> >>> >
> >>> > Can you help me how i can add.
> >>> >
> >>> >
> >>> > Thanks.
> >>> >
> >>> > Divaker
> >>> >
> >>> > --
> >>> > -- 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.comTo
> >>> > unsubscribe, send a blank email to
> >>> > excel-macros+unsubscr...@googlegroups.com
> >>>
> >>> --
> >>> --
> >>> FORUM RULES (986+ members already BANNED for violation)
> >>>
> >>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> >>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
> Advice will
> >>> not get quick attention or may not be answered.
> >>>
> >>> 2) Don't post a question in the thread of another member.
> >>>
> >>> 3) Don't post questions regarding breaking or bypassing any security
> >>> measure.
> >>>
> >>> 4) Acknowledge the responses you receive, good or bad.
> >>>
> >>> 5)  Cross-promotion of, or links to, forums competitive to this forum
> in
> >>> signatures are prohibited.
> >>>
> >>> NOTE  : Don't ever post personal or confidential data in a workbook.
> >>> Forum owners and members are not responsible for any loss.
> >>>
> >>>
> >>>
> --
> >>> To post to this group, send email to excel-macros@googlegroups.com
> >>>
> >>> To unsubscribe, send a blank email to
> >>> excel-macros+unsubscr...@googlegroups.com
> >>>
> >>>
> >>
> >
> > --
> > --
> > FORUM RULES (986+ members already BANNED for violation)
> >
> > 1) Use concise, accurate thread titles. Poor thread titles, like Please
> > Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will
> > not get quick attention or may not be answered.
> >
> > 2) Don't post a question in the thread of another member.
> >
> > 3) Don't post questions regarding breaking or bypassing any security
> > measure.
> >
> > 4) Acknowledge the responses you receive, good or bad.
> >
> > 5) Cross-promotion of, or links to, forums competitive to this forum in
> > signatures are prohibited.
> >
> > NOTE : Don't ever post personal or confidential data in a workbook. Forum
> > owners and members are not responsible for any loss.
> >
> >
> --
> > 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)

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread ╰» ℓαℓιт мσαнη
Hi Divaker,

You query is not cleary mentioned can u please share a file with the
full description so that we can help u as soon as possible

Regards,
Lalit Mohan


On Tue, Jun 26, 2012 at 6:35 PM, Divaker Pandey  wrote:
> Hi Experts,
>
> Still waiting for your response.
>
> Divaker
>
>
> On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey  wrote:
>>
>> Hi Noorain & Experts,
>>
>> Thanks for respond. please find attached file.
>> on tab sheet1 there is two activeX control
>>
>> 1. Textbox -txtLookup
>> 2. ListBox - lstLookup
>>
>> if user change value of textbox it search the input string in each column.
>> and add in listbox all rows which string matched.
>>
>> I want to add headers.
>>
>> Please suggest asap.
>>
>>
>> Divaker
>>
>>
>> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI 
>> wrote:
>>>
>>> Dear Divaker,
>>>
>>> Please share your Activelistbox with group.
>>>
>>> --
>>> Thanks & regards,
>>> Noorain Ansari
>>> www.noorainansari.com
>>> www.excelmacroworld.blogspot.com
>>>
>>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey 
>>> wrote:
>>> > Hi Ayush,
>>> >
>>> > I want to add header column text in Activelistbox through vba.
>>> >
>>> > Can you help me how i can add.
>>> >
>>> >
>>> > Thanks.
>>> >
>>> > Divaker
>>> >
>>> > --
>>> > -- FORUM RULES (986+ members already BANNED for violation) 1) Use
>>> > concise,
>>> > accurate thread titles. Poor thread titles, like Please Help, Urgent,
>>> > Need
>>> > Help, Formula Problem, Code Problem, and Need Advice will not get quick
>>> > attention or may not be answered. 2) Don't post a question in the
>>> > thread of
>>> > another member. 3) Don't post questions regarding breaking or bypassing
>>> > any
>>> > security measure. 4) Acknowledge the responses you receive, good or
>>> > bad. 5)
>>> > Cross-promotion of, or links to, forums competitive to this forum in
>>> > signatures are prohibited. NOTE : Don't ever post personal or
>>> > confidential
>>> > data in a workbook. Forum owners and members are not responsible for
>>> > any
>>> > loss.
>>> >
>>> > --
>>> > To post to this group, send email to excel-macros@googlegroups.com To
>>> > unsubscribe, send a blank email to
>>> > excel-macros+unsubscr...@googlegroups.com
>>>
>>> --
>>> --
>>> FORUM RULES (986+ members already BANNED for violation)
>>>
>>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
>>> not get quick attention or may not be answered.
>>>
>>> 2) Don't post a question in the thread of another member.
>>>
>>> 3) Don't post questions regarding breaking or bypassing any security
>>> measure.
>>>
>>> 4) Acknowledge the responses you receive, good or bad.
>>>
>>> 5)  Cross-promotion of, or links to, forums competitive to this forum in
>>> signatures are prohibited.
>>>
>>> NOTE  : Don't ever post personal or confidential data in a workbook.
>>> Forum owners and members are not responsible for any loss.
>>>
>>>
>>> --
>>> To post to this group, send email to excel-macros@googlegroups.com
>>>
>>> To unsubscribe, send a blank email to
>>> excel-macros+unsubscr...@googlegroups.com
>>>
>>>
>>
>
> --
> --
> FORUM RULES (986+ members already BANNED for violation)
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
> not get quick attention or may not be answered.
>
> 2) Don't post a question in the thread of another member.
>
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
>
> 4) Acknowledge the responses you receive, good or bad.
>
> 5) Cross-promotion of, or links to, forums competitive to this forum in
> signatures are prohibited.
>
> NOTE : Don't ever post personal or confidential data in a workbook. Forum
> owners and members are not responsible for any loss.
>
> --
> 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 membe

Re: $$Excel-Macros$$ Problem with excel

2012-06-26 Thread Divaker Pandey
Hi Experts,

Still waiting for your response.

Divaker

On Tue, Jun 26, 2012 at 5:10 PM, Divaker Pandey  wrote:

> Hi Noorain & Experts,
>
> Thanks for respond. please find attached file.
> on tab sheet1 there is two activeX control
>
> 1. Textbox -txtLookup
> 2. ListBox - lstLookup
>
> if user change value of textbox it search the input string in each column.
> and add in listbox all rows which string matched.
>
> I want to add headers.
>
> Please suggest asap.
>
>
> Divaker
>
>
> On Tue, Jun 26, 2012 at 4:08 PM, NOORAIN ANSARI 
> wrote:
>
>> Dear Divaker,
>>
>> Please share your Activelistbox with group.
>>
>> --
>> Thanks & regards,
>> Noorain Ansari
>> www.noorainansari.com
>> www.excelmacroworld.blogspot.com
>>
>> On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey 
>> wrote:
>> > Hi Ayush,
>> >
>> > I want to add header column text in Activelistbox through vba.
>> >
>> > Can you help me how i can add.
>> >
>> >
>> > Thanks.
>> >
>> > Divaker
>> >
>> > --
>> > -- FORUM RULES (986+ members already BANNED for violation) 1) Use
>> concise,
>> > accurate thread titles. Poor thread titles, like Please Help, Urgent,
>> Need
>> > Help, Formula Problem, Code Problem, and Need Advice will not get quick
>> > attention or may not be answered. 2) Don't post a question in the
>> thread of
>> > another member. 3) Don't post questions regarding breaking or bypassing
>> any
>> > security measure. 4) Acknowledge the responses you receive, good or
>> bad. 5)
>> > Cross-promotion of, or links to, forums competitive to this forum in
>> > signatures are prohibited. NOTE : Don't ever post personal or
>> confidential
>> > data in a workbook. Forum owners and members are not responsible for any
>> > loss.
>> >
>> --
>> > To post to this group, send email to excel-macros@googlegroups.com To
>> > unsubscribe, send a blank email to
>> excel-macros+unsubscr...@googlegroups.com
>>
>> --
>> --
>> FORUM RULES (986+ members already BANNED for violation)
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>>
>> 2) Don't post a question in the thread of another member.
>>
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>>
>> 4) Acknowledge the responses you receive, good or bad.
>>
>> 5)  Cross-promotion of, or links to, forums competitive to this forum in
>> signatures are prohibited.
>>
>> NOTE  : Don't ever post personal or confidential data in a workbook.
>> Forum owners and members are not responsible for any loss.
>>
>>
>> --
>> To post to this group, send email to excel-macros@googlegroups.com
>>
>> To unsubscribe, send a blank email to
>> excel-macros+unsubscr...@googlegroups.com
>>
>>
>>
>

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

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

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

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

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

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

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

--
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$$ Problem with excel

2012-06-26 Thread NOORAIN ANSARI
Dear Divaker,

Please share your Activelistbox with group.

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

On Tue, Jun 26, 2012 at 4:07 PM, Divaker Pandey  wrote:
> Hi Ayush,
>
> I want to add header column text in Activelistbox through vba.
>
> Can you help me how i can add.
>
>
> Thanks.
>
> Divaker
>
> --
> -- 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




$$Excel-Macros$$ Problem with excel

2012-06-26 Thread Divaker Pandey
Hi Ayush,

I want to add header column text in Activelistbox through vba.

Can you help me how i can add.


Thanks.

Divaker

-- 
-- 
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$$ problem with indirect function

2012-05-28 Thread pawel lupinski
thanks a lot Noorain

this is what I was looking for

Pawel




 From: NOORAIN ANSARI 
To: excel-macros@googlegroups.com 
Sent: Monday, May 28, 2012 9:19 AM
Subject: Re: $$Excel-Macros$$ problem with indirect function
 




On Mon, May 28, 2012 at 1:48 PM, NOORAIN ANSARI  
wrote:

Dear Pawel,
>
>Please try this one.
>
>=INDIRECT(ADDRESS(MATCH($B6,INDIRECT(G$4&"!$B:$B"),0),12,1,0,G$4),FALSE)
>
>-- 
>Thanks & regards,
>Noorain Ansari
>www.noorainansari.com
>www.excelmacroworld.blogspot.com
 
>
>
>On Mon, May 28, 2012 at 3:42 AM, pawel lupinski  wrote:
>
>Dear All,
>>I have problem with indirect function in this case is working fine (see 
>>attachment), but if you can show me some extra features I'll be appreciated.
>>Regards,
>>Pawel
-- 
>>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
>
>
>
>
>
>


-- 
Thanks & regards,
Noorain Ansari
www.noorainansari.com
www.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
 
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$$ problem with indirect function

2012-05-28 Thread NOORAIN ANSARI
On Mon, May 28, 2012 at 1:48 PM, NOORAIN ANSARI wrote:

> Dear Pawel,
>
> Please try this one.
>
> =INDIRECT(ADDRESS(MATCH($B6,*INDIRECT(G$4&"!$B:$B")*,0),12,1,0,G$4),FALSE)
>
> --
> Thanks & regards,
> Noorain Ansari
> www.noorainansari.com
> www.excelmacroworld.blogspot.com
>
>
> On Mon, May 28, 2012 at 3:42 AM, pawel lupinski wrote:
>
>> Dear All,
>> I have problem with indirect function in this case is working fine (see
>> attachment), but if you can show me some extra features I'll be appreciated.
>> Regards,
>> Pawel
>>
>> --
>> 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
>
>
>
>
>
>
>


-- 
Thanks & regards,
Noorain Ansari
www.noorainansari.com
www.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

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

indirect(Pawel).xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ problem with indirect function

2012-05-28 Thread NOORAIN ANSARI
Dear Pawel,

Please try this one.

=INDIRECT(ADDRESS(MATCH($B6,*INDIRECT(G$4&"!$B:$B")*,0),12,1,0,G$4),FALSE)

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


On Mon, May 28, 2012 at 3:42 AM, pawel lupinski  wrote:

> Dear All,
> I have problem with indirect function in this case is working fine (see
> attachment), but if you can show me some extra features I'll be appreciated.
> Regards,
> Pawel
>
> --
> 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$$ problem with indirect function

2012-05-27 Thread Anil Gawli
u can use vlookup ...
Regards,
Anil Gawli

On Mon, May 28, 2012 at 3:42 AM, pawel lupinski  wrote:

>  Dear All,
> I have problem with indirect function in this case is working fine (see
> attachment), but if you can show me some extra features I'll be appreciated.
> Regards,
> Pawel
>
> --
> 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




-- 
Thanks & Regards,
Gawli Anil Narayan
Software Developer,
Abacus Software Services Pvt Ltd

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

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

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

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

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

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

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

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

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

Re: $$Excel-Macros$$ problem in copy paste

2012-05-03 Thread yasir_shahjee
thanks

On Thu, May 3, 2012 at 1:24 PM, Asa Rossoff  wrote:

> The link refers you to an update for Skype to resolve the issue.  Or you
> can simply disable the "Click to call" add-in in Internet Explorer.
>
> ** **
>
> Asa
>
> ** **
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *yasir_shahjee
> *Sent:* Thursday, May 03, 2012 1:03 AM
> *To:* excel-macros@googlegroups.com
> *Subject:* Re: $$Excel-Macros$$ problem in copy paste
>
> ** **
>
> yes i have installed
>
> On Tue, May 1, 2012 at 7:10 AM, Asa Rossoff  wrote:
>
> Hi Yasir,
>
> Do you have Skype installed?
>
>  
>
> See
> http://answers.microsoft.com/en-us/office/forum/office_2010-excel/text-loses-formatting-when-i-use-cut-copy-paste/0371d013-1e5a-4d2b-874f-792d34d16c61?auth=1for
>  more details and fix.
> 
>
>  
>
> Asa
>
>  
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *yasir_shahjee
> *Sent:* Monday, April 30, 2012 5:00 AM
> *To:* excel-macros@googlegroups.com
> *Subject:* $$Excel-Macros$$ problem in copy paste
>
>  
>
> Dear Members, 
>
>  
>
> Hope you all are fine, i have attached image file, i have problem when i
> paste any items. i have re install office 2007 twice but problem is still
> there.
>
>  
>
>  
>
> thanks.
> 
>
>  
>
> --
> Yasir 
>
> --
> 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
>
>
>
> 
>
> ** **
>
> --
> Yasir Waheed
> Factory Manager
> Sinopak Extrusion Technologies (Pvt.) Ltd.
>
> --
> FORUM RULES (986+ members already BANNED for violation)
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
>
> 2) Don't post a question in the thread of another member.
>
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
>
> 4) Acknowledge the responses you receive, good or bad.
>
> 5) Cross-promotion of, or links to, forums competitive to this forum in
> signatures are prohibited.
>
> NOTE : Don't ever post personal or confidential data in a workbook. Forum
> owners and members are not responsible for any loss.
>
>
> --
> To post to this group, send email to excel-macros@googlegroups.com
>
> --
> FORUM RULES (986+ members already BANNED for violation)
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Prob

RE: $$Excel-Macros$$ problem in copy paste

2012-05-03 Thread Asa Rossoff
The link refers you to an update for Skype to resolve the issue.  Or you can
simply disable the "Click to call" add-in in Internet Explorer.

 

Asa

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of yasir_shahjee
Sent: Thursday, May 03, 2012 1:03 AM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ problem in copy paste

 

yes i have installed

On Tue, May 1, 2012 at 7:10 AM, Asa Rossoff  wrote:

Hi Yasir,

Do you have Skype installed?

 

See
http://answers.microsoft.com/en-us/office/forum/office_2010-excel/text-loses
-formatting-when-i-use-cut-copy-paste/0371d013-1e5a-4d2b-874f-792d34d16c61?a
uth=1 for more details and fix.

 

Asa

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of yasir_shahjee
Sent: Monday, April 30, 2012 5:00 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ problem in copy paste

 

Dear Members, 

 

Hope you all are fine, i have attached image file, i have problem when i
paste any items. i have re install office 2007 twice but problem is still
there.

 

 

thanks.


 

-- 
Yasir 

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





 

-- 
Yasir Waheed
Factory Manager
Sinopak Extrusion Technologies (Pvt.) Ltd.

-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security
measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum
owners and members are not responsible for any loss.
 

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

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

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

2) Don't post a question in the thread of 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$$ problem in copy paste

2012-05-03 Thread yasir_shahjee
yes i have installed

On Tue, May 1, 2012 at 7:10 AM, Asa Rossoff  wrote:

> Hi Yasir,
>
> Do you have Skype installed?
>
> ** **
>
> See
> http://answers.microsoft.com/en-us/office/forum/office_2010-excel/text-loses-formatting-when-i-use-cut-copy-paste/0371d013-1e5a-4d2b-874f-792d34d16c61?auth=1for
>  more details and fix.
> 
>
> ** **
>
> Asa
>
> ** **
>
> *From:* excel-macros@googlegroups.com [mailto:
> excel-macros@googlegroups.com] *On Behalf Of *yasir_shahjee
> *Sent:* Monday, April 30, 2012 5:00 AM
> *To:* excel-macros@googlegroups.com
> *Subject:* $$Excel-Macros$$ problem in copy paste
>
> ** **
>
> Dear Members, 
>
> ** **
>
> Hope you all are fine, i have attached image file, i have problem when i
> paste any items. i have re install office 2007 twice but problem is still
> there.
>
> ** **
>
> ** **
>
> thanks.
> 
>
> ** **
>
> --
> Yasir 
>
> --
> 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
>



-- 
Yasir Waheed
Factory Manager
Sinopak Extrusion Technologies (Pvt.) Ltd.

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

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

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

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

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

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

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

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


RE: $$Excel-Macros$$ problem in copy paste

2012-04-30 Thread Asa Rossoff
Hi Yasir,

Do you have Skype installed?

 

See
http://answers.microsoft.com/en-us/office/forum/office_2010-excel/text-loses
-formatting-when-i-use-cut-copy-paste/0371d013-1e5a-4d2b-874f-792d34d16c61?a
uth=1 for more details and fix.

 

Asa

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of yasir_shahjee
Sent: Monday, April 30, 2012 5:00 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ problem in copy paste

 

Dear Members, 

 

Hope you all are fine, i have attached image file, i have problem when i
paste any items. i have re install office 2007 twice but problem is still
there.

 

 

thanks.


 

-- 
Yasir 

-- 
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$$ Problem to filter in pivot table

2012-04-24 Thread Shekhar Sharma
Hi Ashish,

In the pivot you can add one more entry of "Stock" in row as well >
De-select "0" and then remove "Stock" from row again.

I think this is what you are looking for.

Regards
Shekhar Sharma

On Tue, Apr 24, 2012 at 10:04 AM, Ashish Bhalara
wrote:

> Dear expert,
>
> I need the filter in pivot on the field of Values in which I want to
> remove zero value from the field, the sheet are attached herewith.
>
> Thanks & regards
>
> Ashish Bhalara
>
> --
> 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
>



-- 
Shekhar Sharma
9910010060
"Life consists not in holding good cards but in playing
those  you hold well"
 "Before you judge another, think of your own last mistake."

-- 
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$$ Problem with Format Change Upon Data Validation Change Event

2012-03-29 Thread dguillett1
ou used range instead of target for your select but I would write it like this
Or even simpler by 
‘dim AType As Range
‘set AType = Range("S8:AL8")
If Not Intersect(Target,range(“s8:al8”) is nothing then

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim SAType As Range
Set SAType = Range("S8:AL8")
If Not Intersect(Target, SAType) Is Nothing Then
On Error Resume Next
   Select Case LCase(Target)'
  Case "amount"
   Target.Offset(1, 0).Resize(296).Style = "Comma"
  Case "percent"
   Target.Offset(1, 0).Resize(266).NumberFormat = "0.00%"
End Select
End If
End Sub



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

From: Tiffany 
Sent: Thursday, March 29, 2012 9:52 AM
To: excel-macros@googlegroups.com 
Subject: $$Excel-Macros$$ Problem with Format Change Upon Data Validation 
Change Event

Hi - 

I'm a little new to VBA but have managed to put together a macro that half 
achieves its intended purpose.  

Depending on what is chosen in a data validation cell (any cell in range S8 to 
AL8), the macro is supposed to change the format of 296 cells below the data 
validation cell:
  a.. If "Amount" is chosen in the data validation cell, the format in cells 
below should change to "Comma" style (i.e., 0.00).  This works.   
  b.. If "Percent" is chosen in the data validation cell, the format in cells 
below should change to "0.00%".  This doesn't work.  I'm stumped since the 
language looks right to me and no debugging error pops up.  Any ideas?

The macro I have now is copied below.  Any help you could provide would be 
greatly appreciated.  


  Private Sub Worksheet_Change(ByVal Target As Excel.Range)


  Dim SAType As Range
  Set SAType = Range("S8:AL8")


  If Not Application.Intersect(Target, SAType) Is Nothing Then
  On Error Resume Next
  Select Case SAType
  Case "Amount"
  Target.Offset(1, 0).Range("A1:A296").Style = "Comma"
  Case "Percent"
  Target.Offset(1, 0).Range("A1:A296").NumberFormat = 
"0.00%"
  End Select
  End If
  End Sub

-- 
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$$ Problem with Format Change Upon Data Validation Change Event

2012-03-29 Thread Sam Mathai Chacko
Why not simply use conditional format?

Sam Mathai Chacko

On Thu, Mar 29, 2012 at 8:22 PM, Tiffany  wrote:

> Hi -
>
> I'm a little new to VBA but have managed to put together a macro that half
> achieves its intended purpose.
>
> Depending on what is chosen in a data validation cell (any cell in range
> S8 to AL8), the macro is supposed to change the format of 296 cells below
> the data validation cell:
>
>- If "Amount" is chosen in the data validation cell, the format in
>cells below should change to "Comma" style (i.e., 0.00).  This works.
>- If "Percent" is chosen in the data validation cell, the format in
>cells below should change to "0.00%".  This doesn't work.  I'm stumped
>since the language looks right to me and no debugging error pops up.  Any
>ideas?
>
> The macro I have now is copied below.  Any help you could provide would be
> greatly appreciated.
>
> Private Sub Worksheet_Change(ByVal Target As Excel.Range)
>
> Dim SAType As Range
> Set SAType = Range("S8:AL8")
>
> If Not Application.Intersect(Target, SAType) Is Nothing Then
> On Error Resume Next
> Select Case SAType
> Case "Amount"
> Target.Offset(1, 0).Range("A1:A296").Style = "Comma"
> Case "Percent"
> Target.Offset(1, 0).Range("A1:A296").NumberFormat =
> "0.00%"
> End Select
> End If
> End Sub
>
>
>  --
> 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
>



-- 
Sam Mathai Chacko

-- 
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-Macros$$ Problem with Format Change Upon Data Validation Change Event

2012-03-29 Thread Tiffany
Hi -

I'm a little new to VBA but have managed to put together a macro that half 
achieves its intended purpose.  

Depending on what is chosen in a data validation cell (any cell in range S8 
to AL8), the macro is supposed to change the format of 296 cells below the 
data validation cell:

   - If "Amount" is chosen in the data validation cell, the format in cells 
   below should change to "Comma" style (i.e., 0.00).  This works.  
   - If "Percent" is chosen in the data validation cell, the format in 
   cells below should change to "0.00%".  This doesn't work.  I'm stumped 
   since the language looks right to me and no debugging error pops up.  Any 
   ideas?
   
The macro I have now is copied below.  Any help you could provide would be 
greatly appreciated.  

Private Sub Worksheet_Change(ByVal Target As Excel.Range)

Dim SAType As Range
Set SAType = Range("S8:AL8")

If Not Application.Intersect(Target, SAType) Is Nothing Then
On Error Resume Next
Select Case SAType
Case "Amount"
Target.Offset(1, 0).Range("A1:A296").Style = "Comma"
Case "Percent"
Target.Offset(1, 0).Range("A1:A296").NumberFormat = 
"0.00%"
End Select
End If
End Sub


-- 
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$$ problem with setfocus

2012-02-17 Thread Shankar Bheema
Thank you Noorain Bhai

On Fri, Feb 17, 2012 at 2:59 PM, NOORAIN ANSARI wrote:

> Dear Shankar,
>
> Please try it..
>
> Private Sub TextBox2_Enter()
> If TextBox1.Text = "" Then
> MsgBox "Mandatory Field", vbQuestion + vbOKOnly, "Alert"
> TextBox1.SetFocus
> Else
> TextBox2.SetFocus
> End If
> End Sub
>
> See attached sheet.
>
>
>
> On Fri, Feb 17, 2012 at 1:18 PM, Shankar Bheema wrote:
>
>> Dear Experts
>>
>> I am attaching an userform with 2 textboxes. While on exit from the first
>> textbox I have given a msgbox alert for not keeping the box empty.  But the
>> setfocus event is not working for it.  Kindly guide me.
>>
>> regards
>> shankar sb
>>
>> --
>> 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
>

-- 
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-Macros$$ problem with setfocus

2012-02-16 Thread Shankar Bheema
Dear Experts

I am attaching an userform with 2 textboxes. While on exit from the first
textbox I have given a msgbox alert for not keeping the box empty.  But the
setfocus event is not working for it.  Kindly guide me.

regards
shankar sb

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


setfocus problem.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Problem with Sumifs formula

2011-09-16 Thread Ms-Exl-Learner .
Hi Kalyan,

Try the below formula.

=SUMPRODUCT((TRIM(A2:A37)=TRIM(F11))*(TRIM(B2:B37)=TRIM(G7))*(LEFT(TRIM(C2:C37),3)=LEFT(TRIM(G8),3))*(--MID(TRIM(C2:C37),FIND("
",TRIM(C2:C37))+1,255)>=--MID(TRIM(G8),FIND("
",TRIM(G8))+1,255))*(--MID(TRIM(C2:C37),FIND("
",TRIM(C2:C37))+1,255)<=--MID(TRIM(G9),FIND(" ",TRIM(G9))+1,255))*D2:D37)

Refer the attached file for further details.

---
Ms.Exl.Learner
---

On Fri, Sep 16, 2011 at 4:11 PM, Kal xcel  wrote:

> Dear Experts,
>
> I am facing a problem when using sumifs formula, not getting desired
> result. Plase help me to rectify the problem or better solution.
>
> Thanks in advance
> --
> *Kalyan Chattopadhyay*
>
> *Executive Sales Coordinator*
> *R. S. H. Pvt. Ltd.*
>
>  --
>
> --
> 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


Problem with Sumifs Formula-Resolved.xls
Description: MS-Excel spreadsheet


Re: $$Excel-Macros$$ Problem with Sumifs formula

2011-09-16 Thread Kal xcel
Both are working perfectly.

Thank u Viper

Thanks a lot Noorain



On Fri, Sep 16, 2011 at 5:48 PM, NOORAIN ANSARI wrote:

> Dear Kalyan,
>
> Please see attached sheet..
>
> =SUMIFS($E$2:$E$37,$A$2:$A$37,G11,$B$2:$B$37,H7,$C$2:$C$37,">="&INT(RIGHT(H8,LEN(H8)-FIND("
> ",H8,1))),$C$2:$C$37,"<="&INT(RIGHT(H9,LEN(H9)-FIND(" ",H9,1
>
> --
> Thanks & regards,
> Noorain Ansari
>  *http://excelmacroworld.blogspot.com/*
> *http://noorain-ansari.blogspot.com/*
>
>  On Fri, Sep 16, 2011 at 4:11 PM, Kal xcel  wrote:
>
>> Dear Experts,
>>
>> I am facing a problem when using sumifs formula, not getting desired
>> result. Plase help me to rectify the problem or better solution.
>>
>> Thanks in advance
>> --
>> *Kalyan Chattopadhyay*
>>
>> *Executive Sales Coordinator*
>> *R. S. H. Pvt. Ltd.*
>>
>> --
>>
>> --
>> 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
>



-- 
*Kalyan Chattopadhyay*

*Executive Sales Coordinator*
*R. S. H. Pvt. Ltd.*

-- 
--
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$$ Problem with Sumifs formula

2011-09-16 Thread NOORAIN ANSARI
Dear Kalyan,

Please see attached sheet..

=SUMIFS($E$2:$E$37,$A$2:$A$37,G11,$B$2:$B$37,H7,$C$2:$C$37,">="&INT(RIGHT(H8,LEN(H8)-FIND("
",H8,1))),$C$2:$C$37,"<="&INT(RIGHT(H9,LEN(H9)-FIND(" ",H9,1

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

On Fri, Sep 16, 2011 at 4:11 PM, Kal xcel  wrote:

> Dear Experts,
>
> I am facing a problem when using sumifs formula, not getting desired
> result. Plase help me to rectify the problem or better solution.
>
> Thanks in advance
> --
> *Kalyan Chattopadhyay*
>
> *Executive Sales Coordinator*
> *R. S. H. Pvt. Ltd.*
>
> --
>
> --
> 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


Problem with Sumifs Formula(Solved).xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Problem with Sumifs formula

2011-09-16 Thread §»VIPER«§
Dear Kalyan

why don't you use
*
=SUMPRODUCT(($A$2:$A$37=F11)*($B$2:$B$37=$G$7)*(--SUBSTITUTE(C2:C37,"MOC","")>=--SUBSTITUTE(G8,"MOC",""))*(--SUBSTITUTE(C2:C37,"MOC","")<=--SUBSTITUTE(G9,"MOC",""))*$D$2:$D$37)
*

pfa

-- 
*Great day,*
*viper

*
On Fri, Sep 16, 2011 at 4:11 PM, Kal xcel  wrote:

> Dear Experts,
>
> I am facing a problem when using sumifs formula, not getting desired
> result. Plase help me to rectify the problem or better solution.
>
> Thanks in advance
> --
> *Kalyan Chattopadhyay*
>
> *Executive Sales Coordinator*
> *R. S. H. Pvt. Ltd.*
>
>  --
>
> --
> 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


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


$$Excel-Macros$$ Problem with Sumifs formula

2011-09-16 Thread Kal xcel
Dear Experts,

I am facing a problem when using sumifs formula, not getting desired result.
Plase help me to rectify the problem or better solution.

Thanks in advance
-- 
*Kalyan Chattopadhyay*

*Executive Sales Coordinator*
*R. S. H. Pvt. Ltd.*

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


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


Re: $$Excel-Macros$$ problem with cell width in a workbook

2011-09-08 Thread Shankar Bheema
is it possible to split the cell column into

On Thu, Sep 8, 2011 at 6:05 PM, dguillett1  wrote:

>   NO can do. Cell width for the entire column must be the same. You can
> merge cells but NO one suggests that so maybe format to WRAP and raise the
> height of the row
>
>
>  *From:* Shankar Bheema 
> *Sent:* Wednesday, September 07, 2011 11:33 PM
> *To:* excel-macros@googlegroups.com
> *Subject:* Re: $$Excel-Macros$$ problem with cell width in a workbook
>
> good morning Noorain
>
> I tried with your example sheet.  But it is fitting the cell width just
> like the Format-->Autofit option in the excel.  But what I need is,
>
> the particular cells containing the red font has to be fit to their text
> width and the following column width may left as they are.
>
> suppose
>
> d10 is having 2 characters
> d15 is having 34 characters
>
> both should fit to their textwidths without disturbing the remaining cell
> widths in the same column.
>
> On Wed, Sep 7, 2011 at 6:40 PM, Shankar Bheema wrote:
>
>> I am not getting even after selection as you said.  I noticed non of the
>> control is allowing to work on the sheet what would be the prblem with my
>> excel ?
>>
>> On Wed, Sep 7, 2011 at 6:31 PM, NOORAIN ANSARI 
>> wrote:
>>
>>> Dear Bheema,
>>>
>>> First of all you select a range when you want to apply it...
>>> it work after selection...
>>>
>>> you select red font area then press it..
>>> Hope it will work fine..
>>>
>>>   On Wed, Sep 7, 2011 at 6:24 PM, Shankar Bheema >> > wrote:
>>>
>>>> I downloaded your file but unable to click on the command button as I
>>>> placed my cursor on the command button it is turning into 4 headed arrow 
>>>> and
>>>> clicking is not possible.  what to do ?
>>>>
>>>>   On Tue, Sep 6, 2011 at 11:02 PM, NOORAIN ANSARI <
>>>> noorain.ans...@gmail.com> wrote:
>>>>
>>>>>   Dear Bheema,
>>>>>
>>>>> Please try it and see attached sheet
>>>>>
>>>>> Sub Autofit()
>>>>>  If TypeName(Selection) = "Range" Then
>>>>> Selection.Columns.Autofit
>>>>> End If
>>>>> End Sub
>>>>>
>>>>>
>>>>>
>>>>> Thanks & regards,
>>>>> Noorain Ansari
>>>>>  
>>>>> *http://excelmacroworld.blogspot.com/*<http://excelmacroworld.blogspot.com/>
>>>>> *http://noorain-ansari.blogspot.com/*<http://noorain-ansari.blogspot.com/>
>>>>>  On Tue, Sep 6, 2011 at 7:18 PM, Shankar Bheema <
>>>>> shankar.n...@gmail.com> wrote:
>>>>>
>>>>>> sure guruji, pls have a look at my attachment and provide me solution.
>>>>>>
>>>>>>
>>>>>>  I marked the cell data with Redcolor.  Those are to be adjusted to
>>>>>> their width and remaining to their respective widths.  Kindly provide
>>>>>> solution.
>>>>>>
>>>>>>   On Tue, Sep 6, 2011 at 7:06 PM, NOORAIN ANSARI <
>>>>>> noorain.ans...@gmail.com> wrote:
>>>>>>
>>>>>>>   Dear Bheema,
>>>>>>>
>>>>>>> please share attachement with any rough example..
>>>>>>>
>>>>>>> --
>>>>>>>
>>>>>>> On Tue, Sep 6, 2011 at 6:56 PM, Bheema Shankar <
>>>>>>> shankar.n...@gmail.com> wrote:
>>>>>>>
>>>>>>>> Pls.  I need a form to adjust to the data widths of different sizes.
>>>>>>>> Its  a part of the form basing on your solution I have to prepare
>>>>>>>> that
>>>>>>>> form of 3 pages.  pls provide solution.
>>>>>>>>
>>>>>>>> --
>>>>>>>>
>>>>>>>> --
>>>>>>>> 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 @
>&

Re: $$Excel-Macros$$ Problem extracting data from multiple columns

2011-09-08 Thread Andy McGooner

Why cant i attach to this

On Sep 5, 3:04 pm, "dguillett1"  wrote:
> Post a file
>
>
>
> -Original Message-
> From: Andy McGooner
> Sent: Monday, September 05, 2011 7:56 AM
> To: MS EXCEL AND VBA MACROS
>
> Cc: amcni...@jaguarlandrover.com
> Subject: $$Excel-Macros$$ Problemextractingdatafrom multiple columns
>
> Hi All,
>
> I have a spreadsheet that can have up to 5datacolumn entries per row
> asscociated to a date etc. The problem is there is multiple rows and i
> really want to move it all into 2 columns and keep the date associated
> with thedatai am moving as i intend to put these in a graph.
>
> I could do this manually but there will always bedatagetting added,
> so would like to be able to do this with a macro. I have tried using
> autofilters, offsets, Xlup etc but ii keepcant get it to work, i
> assume because there is notdatain every cellof each column
>
> Anyway idoes anyone know how i can make it go across each row in the
> sheet extract thedataand add it into a new row on another sheet
> whilst retaining the date associated with it.
>
> Apologies if this does not make sense, however can send an extract
> from the main workbook if it helps.
>
> Thanks in Advance,
>
> Andy
>
> --
> ---­---
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links 
> :http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials athttp://www.excel-macros.blogspot.com
> 4. Learn VBA Macros athttp://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> Like our page on facebook , Just follow below 
> linkhttp://www.facebook.com/discussexcel- Hide quoted text -
>
> - Show quoted text -

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

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


Re: $$Excel-Macros$$ problem with cell width in a workbook

2011-09-08 Thread dguillett1
NO can do. Cell width for the entire column must be the same. You can merge 
cells but NO one suggests that so maybe format to WRAP and raise the height of 
the row


From: Shankar Bheema 
Sent: Wednesday, September 07, 2011 11:33 PM
To: excel-macros@googlegroups.com 
Subject: Re: $$Excel-Macros$$ problem with cell width in a workbook

good morning Noorain

I tried with your example sheet.  But it is fitting the cell width just like 
the Format-->Autofit option in the excel.  But what I need is,

the particular cells containing the red font has to be fit to their text width 
and the following column width may left as they are.

suppose

d10 is having 2 characters
d15 is having 34 characters

both should fit to their textwidths without disturbing the remaining cell 
widths in the same column.


On Wed, Sep 7, 2011 at 6:40 PM, Shankar Bheema  wrote:

  I am not getting even after selection as you said.  I noticed non of the 
control is allowing to work on the sheet what would be the prblem with my excel 
?

  On Wed, Sep 7, 2011 at 6:31 PM, NOORAIN ANSARI  
wrote:

Dear Bheema,

First of all you select a range when you want to apply it...
it work after selection...

you select red font area then press it..
Hope it will work fine..


On Wed, Sep 7, 2011 at 6:24 PM, Shankar Bheema  
wrote:

  I downloaded your file but unable to click on the command button as I 
placed my cursor on the command button it is turning into 4 headed arrow and 
clicking is not possible.  what to do ?


  On Tue, Sep 6, 2011 at 11:02 PM, NOORAIN ANSARI 
 wrote:

Dear Bheema,

Please try it and see attached sheet

Sub Autofit()
 If TypeName(Selection) = "Range" Then
Selection.Columns.Autofit
End If
End Sub 




Thanks & regards,
Noorain Ansari
http://excelmacroworld.blogspot.com/
http://noorain-ansari.blogspot.com/
On Tue, Sep 6, 2011 at 7:18 PM, Shankar Bheema  
wrote:

  sure guruji, pls have a look at my attachment and provide me 
solution. 

  I marked the cell data with Redcolor.  Those are to be adjusted to 
their width and remaining to their respective widths.  Kindly provide solution.


  On Tue, Sep 6, 2011 at 7:06 PM, NOORAIN ANSARI 
 wrote:

Dear Bheema,

please share attachement with any rough example..

-- 


On Tue, Sep 6, 2011 at 6:56 PM, Bheema Shankar 
 wrote:

  Pls.  I need a form to adjust to the data widths of different 
sizes.
  Its  a part of the form basing on your solution I have to prepare 
that
  form of 3 pages.  pls provide solution.

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

Re: $$Excel-Macros$$ problem with duplication of data

2011-09-08 Thread Shankar Bheema
I tried with this code.  But it is not stopping the entry of the duplicate
row with the same file number.

file numbers may be given consequently 1,2,3 .,

if we enter file number 1 for twice, it would fire msgbox that it already
exists.

pls provide solution


On Wed, Sep 7, 2011 at 8:03 PM, mohd saber  wrote:

> Hi Shankar,
>
> Please find the below updated data for the command file
>
> Private Sub CommandButton1_Click()
> ActiveWorkbook.Sheets("Employee Details").Activate
> Range("A1").Select
> Do
>
>If IsEmpty(ActiveCell) = False Then
>  If activecell.value = txtfileno.value Then
>  ActiveCell.Offset(0, 1) = txtname.Text
> EndIf
>ActiveCell.Offset(1, 0).Select
> End If
> Loop Until IsEmpty(ActiveCell) = True
> ActiveCell.Value = txtfileno.Value
> ActiveCell.Offset(0, 1) = txtname.Text
> Regards,
> saber
> On Wed, Sep 7, 2011 at 6:58 PM, Bheema Shankar wrote:
>
>> I placed the following objects on my VBA excel
>>
>> TextBoxes
>> a) file no
>> b) Name
>>
>> Command buttons
>> a) Save
>> b) Update
>>
>> In save button I have given code as@@@
>>
>> Private Sub CommandButton1_Click()
>> ActiveWorkbook.Sheets("Employee Details").Activate
>> Range("A1").Select
>> Do
>>If IsEmpty(ActiveCell) = False Then
>>ActiveCell.Offset(1, 0).Select
>> End If
>>
>> Loop Until IsEmpty(ActiveCell) = True
>> ActiveCell.Value = txtfileno.Value
>> ActiveCell.Offset(0, 1) = txtname.Text
>>
>> In Update button i have given the code as @@@
>>
>> Dim ws As Worksheet
>> Dim uf As UserForm
>> Dim wslastrw As Long, filerow As Long
>> Dim fileno As String
>> Dim filefnd As Range
>>
>> Set uf = formcalsheet
>>
>> fileno = uf.txtfileno.Text
>>
>>If fileno = "" Then
>>MsgBox "Please enter a valid File No."
>>Exit Sub
>>End If
>>
>> Set ws = Worksheets("Employee Details")
>> wslastrw = ws.Range("A" & Rows.Count).End(xlUp).Row
>>
>> With ws
>>
>>  Set filefnd = .Range("A2:A" & wslastrw).Find(what:=fileno,
>> after:=.Range("A2"), _
>>LookIn:=xlValues, lookat:=xlPart, searchorder:=xlByRows,
>> searchdirection:=xlNext, _
>>MatchCase:=False)
>>If filefnd Is Nothing Then
>>MsgBox "No File with this File No. exists." & Chr(10) &
>> "Please enter a valid File No."
>>Exit Sub
>>Else
>>filerow = filefnd.Row
>>End If
>>
>> uf.txtname.Value = ws.Range("B" & filerow).Value
>>
>>
>>
>> PROBLEM IS#
>>
>> while clicking the update button after giving the file number the form
>> will present the corresponding data to that particular number
>>
>> If I modify any change and clicks the save button again a fresh row is
>> creating with the same number
>>
>>
>> It should be avoided.  The data should be amended in the existing row
>> itself.  whats wrong with the code. provide me solution
>>
>> --
>>
>> --
>> 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,
> Saber
>
>  --
>
> --
> 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$$ problem with cell width in a workbook

2011-09-07 Thread Shankar Bheema
good morning Noorain

I tried with your example sheet.  But it is fitting the cell width just like
the Format-->Autofit option in the excel.  But what I need is,

the particular cells containing the red font has to be fit to their text
width and the following column width may left as they are.

suppose

d10 is having 2 characters
d15 is having 34 characters

both should fit to their textwidths without disturbing the remaining cell
widths in the same column.

On Wed, Sep 7, 2011 at 6:40 PM, Shankar Bheema wrote:

> I am not getting even after selection as you said.  I noticed non of the
> control is allowing to work on the sheet what would be the prblem with my
> excel ?
>
> On Wed, Sep 7, 2011 at 6:31 PM, NOORAIN ANSARI 
> wrote:
>
>> Dear Bheema,
>>
>> First of all you select a range when you want to apply it...
>> it work after selection...
>>
>> you select red font area then press it..
>> Hope it will work fine..
>>
>> On Wed, Sep 7, 2011 at 6:24 PM, Shankar Bheema wrote:
>>
>>> I downloaded your file but unable to click on the command button as I
>>> placed my cursor on the command button it is turning into 4 headed arrow and
>>> clicking is not possible.  what to do ?
>>>
>>>   On Tue, Sep 6, 2011 at 11:02 PM, NOORAIN ANSARI <
>>> noorain.ans...@gmail.com> wrote:
>>>
   Dear Bheema,

 Please try it and see attached sheet

 Sub Autofit()
  If TypeName(Selection) = "Range" Then
 Selection.Columns.Autofit
 End If
  End Sub



 Thanks & regards,
 Noorain Ansari
  
 *http://excelmacroworld.blogspot.com/*
 *http://noorain-ansari.blogspot.com/*
  On Tue, Sep 6, 2011 at 7:18 PM, Shankar Bheema >>> > wrote:

> sure guruji, pls have a look at my attachment and provide me solution.
>
>  I marked the cell data with Redcolor.  Those are to be adjusted to
> their width and remaining to their respective widths.  Kindly provide
> solution.
>
>   On Tue, Sep 6, 2011 at 7:06 PM, NOORAIN ANSARI <
> noorain.ans...@gmail.com> wrote:
>
>>   Dear Bheema,
>>
>> please share attachement with any rough example..
>>
>> --
>>
>> On Tue, Sep 6, 2011 at 6:56 PM, Bheema Shankar <
>> shankar.n...@gmail.com> wrote:
>>
>>> Pls.  I need a form to adjust to the data widths of different sizes.
>>> Its  a part of the form basing on your solution I have to prepare
>>> that
>>> form of 3 pages.  pls provide solution.
>>>
>>> --
>>>
>>> --
>>> 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/disc

Re: $$Excel-Macros$$ problem with duplication of data

2011-09-07 Thread Shankar Bheema
thank you so much saber

On Wed, Sep 7, 2011 at 8:03 PM, mohd saber  wrote:

> Hi Shankar,
>
> Please find the below updated data for the command file
>
> Private Sub CommandButton1_Click()
> ActiveWorkbook.Sheets("Employee Details").Activate
> Range("A1").Select
> Do
>
>If IsEmpty(ActiveCell) = False Then
>  If activecell.value = txtfileno.value Then
>  ActiveCell.Offset(0, 1) = txtname.Text
> EndIf
>ActiveCell.Offset(1, 0).Select
> End If
> Loop Until IsEmpty(ActiveCell) = True
> ActiveCell.Value = txtfileno.Value
> ActiveCell.Offset(0, 1) = txtname.Text
> Regards,
> saber
> On Wed, Sep 7, 2011 at 6:58 PM, Bheema Shankar wrote:
>
>> I placed the following objects on my VBA excel
>>
>> TextBoxes
>> a) file no
>> b) Name
>>
>> Command buttons
>> a) Save
>> b) Update
>>
>> In save button I have given code as@@@
>>
>> Private Sub CommandButton1_Click()
>> ActiveWorkbook.Sheets("Employee Details").Activate
>> Range("A1").Select
>> Do
>>If IsEmpty(ActiveCell) = False Then
>>ActiveCell.Offset(1, 0).Select
>> End If
>>
>> Loop Until IsEmpty(ActiveCell) = True
>> ActiveCell.Value = txtfileno.Value
>> ActiveCell.Offset(0, 1) = txtname.Text
>>
>> In Update button i have given the code as @@@
>>
>> Dim ws As Worksheet
>> Dim uf As UserForm
>> Dim wslastrw As Long, filerow As Long
>> Dim fileno As String
>> Dim filefnd As Range
>>
>> Set uf = formcalsheet
>>
>> fileno = uf.txtfileno.Text
>>
>>If fileno = "" Then
>>MsgBox "Please enter a valid File No."
>>Exit Sub
>>End If
>>
>> Set ws = Worksheets("Employee Details")
>> wslastrw = ws.Range("A" & Rows.Count).End(xlUp).Row
>>
>> With ws
>>
>>  Set filefnd = .Range("A2:A" & wslastrw).Find(what:=fileno,
>> after:=.Range("A2"), _
>>LookIn:=xlValues, lookat:=xlPart, searchorder:=xlByRows,
>> searchdirection:=xlNext, _
>>MatchCase:=False)
>>If filefnd Is Nothing Then
>>MsgBox "No File with this File No. exists." & Chr(10) &
>> "Please enter a valid File No."
>>Exit Sub
>>Else
>>filerow = filefnd.Row
>>End If
>>
>> uf.txtname.Value = ws.Range("B" & filerow).Value
>>
>>
>>
>> PROBLEM IS#
>>
>> while clicking the update button after giving the file number the form
>> will present the corresponding data to that particular number
>>
>> If I modify any change and clicks the save button again a fresh row is
>> creating with the same number
>>
>>
>> It should be avoided.  The data should be amended in the existing row
>> itself.  whats wrong with the code. provide me solution
>>
>> --
>>
>> --
>> 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,
> Saber
>
>  --
>
> --
> 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$$ problem with duplication of data

2011-09-07 Thread mohd saber
Hi Shankar,

Please find the below updated data for the command file

Private Sub CommandButton1_Click()
ActiveWorkbook.Sheets("Employee Details").Activate
Range("A1").Select
Do

   If IsEmpty(ActiveCell) = False Then
 If activecell.value = txtfileno.value Then
 ActiveCell.Offset(0, 1) = txtname.Text
EndIf
   ActiveCell.Offset(1, 0).Select
End If
Loop Until IsEmpty(ActiveCell) = True
ActiveCell.Value = txtfileno.Value
ActiveCell.Offset(0, 1) = txtname.Text
Regards,
saber
On Wed, Sep 7, 2011 at 6:58 PM, Bheema Shankar wrote:

> I placed the following objects on my VBA excel
>
> TextBoxes
> a) file no
> b) Name
>
> Command buttons
> a) Save
> b) Update
>
> In save button I have given code as@@@
>
> Private Sub CommandButton1_Click()
> ActiveWorkbook.Sheets("Employee Details").Activate
> Range("A1").Select
> Do
>If IsEmpty(ActiveCell) = False Then
>ActiveCell.Offset(1, 0).Select
> End If
>
> Loop Until IsEmpty(ActiveCell) = True
> ActiveCell.Value = txtfileno.Value
> ActiveCell.Offset(0, 1) = txtname.Text
>
> In Update button i have given the code as @@@
>
> Dim ws As Worksheet
> Dim uf As UserForm
> Dim wslastrw As Long, filerow As Long
> Dim fileno As String
> Dim filefnd As Range
>
> Set uf = formcalsheet
>
> fileno = uf.txtfileno.Text
>
>If fileno = "" Then
>MsgBox "Please enter a valid File No."
>Exit Sub
>End If
>
> Set ws = Worksheets("Employee Details")
> wslastrw = ws.Range("A" & Rows.Count).End(xlUp).Row
>
> With ws
>
>  Set filefnd = .Range("A2:A" & wslastrw).Find(what:=fileno,
> after:=.Range("A2"), _
>LookIn:=xlValues, lookat:=xlPart, searchorder:=xlByRows,
> searchdirection:=xlNext, _
>MatchCase:=False)
>If filefnd Is Nothing Then
>MsgBox "No File with this File No. exists." & Chr(10) &
> "Please enter a valid File No."
>Exit Sub
>Else
>filerow = filefnd.Row
>End If
>
> uf.txtname.Value = ws.Range("B" & filerow).Value
>
>
>
> PROBLEM IS#
>
> while clicking the update button after giving the file number the form
> will present the corresponding data to that particular number
>
> If I modify any change and clicks the save button again a fresh row is
> creating with the same number
>
>
> It should be avoided.  The data should be amended in the existing row
> itself.  whats wrong with the code. provide me solution
>
> --
>
> --
> 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,
Saber

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