$$Excel-Macros$$ hi thanks for the help

2009-09-07 Thread ashish koul
hi can you please give ma codes which will remove the unwated or_ at the end of emailds in attachment thanks ashish --~--~-~--~~~---~--~~ -- Some important links for excel

$$Excel-Macros$$ Re: hi thanks for the help

2009-09-07 Thread Harmeet Singh
Just added some lines to Daniel's code. See attached file... On Mon, Sep 7, 2009 at 11:34 AM, ashish koul koul.ash...@gmail.com wrote: hi can you please give ma codes which will remove the unwated or_ at the end of emailds in attachment thanks ashish -- Thanks

$$Excel-Macros$$ Re: hi thanks for the help

2009-09-07 Thread Harmeet Singh
*Sorry, attached wrong file**try the attached file.* On Mon, Sep 7, 2009 at 2:27 PM, Harmeet Singh harmeet.hew...@gmail.comwrote: Just added some lines to Daniel's code. See attached file... On Mon, Sep 7, 2009 at 11:34 AM, ashish koul koul.ash...@gmail.comwrote:

$$Excel-Macros$$ Re: help plz

2009-09-07 Thread Daniel
Hi. Can you attach a sample file to your reply ? Daniel From: excel-macros@googlegroups.com [mailto:excel-mac...@googlegroups.com] On Behalf Of ashish koul Sent: dimanche 6 septembre 2009 18:00 To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ Re: help plz hi thanks i

$$Excel-Macros$$ Re: hi thanks for the help

2009-09-07 Thread Daniel
Hi, See attached file. Select the range of mail addresses and execute the test macro. HTH Daniel From: excel-macros@googlegroups.com [mailto:excel-mac...@googlegroups.com] On Behalf Of ashish koul Sent: lundi 7 septembre 2009 08:05 To: excel-macros@googlegroups.com Subject:

$$Excel-Macros$$ date format

2009-09-07 Thread Manoj Kukrej
Hi , Attached file is donloaded from RBI. 1I found date in dd/mm/ format But when I am converting it in date format is not converting How I can I do that? 2 issue no.2 not related to this last time I dump data date format was in mmddyy but I have to convert by using F2

$$Excel-Macros$$ edit all sheets in a workbook at the same time?

2009-09-07 Thread rmullan
Hi. I have been using Excel for years but never really needed to get into VBA too much .. usually recording the macro was sufficientbut now I am learning VBA as I go. I want to know if there is a command which will allow me to all sheets in a workbook at the same time. I want to enter text

$$Excel-Macros$$ Re: Site formulation inclusing Multiple freq.

2009-09-07 Thread Umakant Hale
Thanks got solution ! On Mon, Sep 7, 2009 at 4:49 PM, Umakant Hale umakant.h...@gmail.com wrote: Dear dilip, here source sheet 1,2,3, 4, 5... it is any random no, i don't want to put A2=1 or A2=2 like this format, colomn a A includes any Random No. or Any name, pls give solution.

$$Excel-Macros$$ Re: help plz

2009-09-07 Thread Swapnil Palande
Hi Ashish, Use following formula to remove whitespace. =SUBSTITUTE(B2, , ) Regards, Swapnil. On Sun, Sep 6, 2009 at 9:29 PM, ashish koul koul.ash...@gmail.com wrote: hi thanks i went through the site i am able to clean and trim but in below case i am not abe to find the solution

$$Excel-Macros$$ Date issue on a vba application

2009-09-07 Thread Alessandro
Hi all, I'm using Excel 2003 and I'm writing a simple VBA application which inserts single credit card expenses into a sheet and then updates - in the same sheet but in a different area - the total on a month basis. I have some problems in the month basis update because dates aren't managed

$$Excel-Macros$$ Re: help plz

2009-09-07 Thread Swanand Deshpande
Hi, Use the Concatenate Function. ashish k...@gmail.com ashish k...@gmail.com If the data is in cells A1 and B1, then put concatenate(A1,B1) in cell C1 Regards, Swanand Deshpande From: Daniel Sent: Monday, September 07, 2009 3:42 PM To: excel-macros@googlegroups.com Subject:

$$Excel-Macros$$ Too many arguments for this function help with nested IF statements

2009-09-07 Thread Mark O
Good morning! Would love your help with this issue. I'm try to create a formula that will evaluate a number based on whether it fits into one of five buckets and then apply the appropriate formula to calculate the resulting credit value I'm seeking. N = The number being evaluated (referred to

$$Excel-Macros$$ Insert and name sheets based on data on a column

2009-09-07 Thread Subu
Hi I have names on a column of an XL sheet e.g. Bharti Russel X.. Y.. Z... etc I wish to (a) insert new sheets and (b) name these sheets Bharti, Russel etc etc i.e. new sheets to be inserted and named as per date on the column Any help / pointers would be most appreciated Thanks in advance

$$Excel-Macros$$ hi daniel i was trying this code also but it is showing some errors can u check plzzzzzzzz

2009-09-07 Thread ashish koul
Sub test() Dim c As Range Dim x As Integer For Each c In Selection If c.Value Then c.Value = Application.Clean(c.Value) c.Value = Application.Trim(c.Value) c.Value = Application.Substitute(c.Value, , ) c.Value = LCase(c.Value)

$$Excel-Macros$$ Re: help plz

2009-09-07 Thread ashish koul
hi thanks harmeet but in this case it only works with emailids ending with .com wht if iit ends with .net or .org or .in On Mon, Sep 7, 2009 at 6:12 AM, Daniel dcolarde...@free.fr wrote: Hi. Can you attach a sample file to your reply ? Daniel *From:*

Fwd: $$Excel-Macros$$ Re: Site formulation inclusing Multiple freq.

2009-09-07 Thread Umakant Hale
Dear dilip, here source sheet 1,2,3, 4, 5... it is any random no, i don't want to put A2=1 or A2=2 like this format, colomn a A includes any Random No. or Any name, pls give solution. Umakant -- Forwarded message -- From: Dilip Pandey dilipan...@gmail.com Date: Sat, Sep 5, 2009

$$Excel-Macros$$ Re: Calculating renewal dates

2009-09-07 Thread Eric
Thank you everyone for your suggestions. I'd have to say that of all the submissions, Daniel's is the one that really seems to have nailed it. He correctly understood that simply subtracting the begin year from the current year and dividing this number by the number of years in the contract term

$$Excel-Macros$$ Re: edit all sheets in a workbook at the same time?

2009-09-07 Thread Norman May
You can select the first sheet tab, hold the shift key then select the last sheet tab. This will activate all sheets. Enter the desird content of the any cell On Mon, Sep 7, 2009 at 5:53 AM, rmullan mullanr...@hotmail.com wrote: Hi. I have been using Excel for years but never really needed

$$Excel-Macros$$ Re: help plz

2009-09-07 Thread Harmeet Singh
then use this file... On Mon, Sep 7, 2009 at 3:54 PM, ashish koul koul.ash...@gmail.com wrote: hi thanks harmeet but in this case it only works with emailids ending with .com wht if iit ends with .net or .org or .in On Mon, Sep 7, 2009 at 6:12 AM, Daniel

$$Excel-Macros$$ Re: Merging Data of two different sheets of two different files

2009-09-07 Thread Prasad Gadgil
*Dear Prashant All Group Member* Thanks for showing interest to solve my problem, Attaching sample zip file containing 1. Master 1 2. Master 2 Now i wish any macro to create Final Master file. Please check for desire output file. I will be really grateful for all of you if you provide

$$Excel-Macros$$ Re: Too many arguments for this function help with nested IF statements

2009-09-07 Thread Dave Bonallack
Hi Mark, Your description is very detailed, but I still get lost in it. Perhaps you could attach the file. Fudge the data if it's sensitive. Regards - Dave. Date: Mon, 7 Sep 2009 06:37:32 -0700 Subject: $$Excel-Macros$$ Too many arguments for this function help with nested IF statements

$$Excel-Macros$$ Puzzle #2 - Generate the Sample Pattern (VBA)

2009-09-07 Thread Ashish Jain
Hi All, This is challenge for all excel users. Solve these puzzles and sharpen your excel acumen. So, here goes the second puzzle of Excel Macros Google Group in the attached file. *Old Puzzles:* Puzzle #1 -