Re: $$Excel-Macros$$ CODE FOR RANGE

2017-10-20 Thread GENIUS
Thanks for your help -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles, like Please Help,

Re: $$Excel-Macros$$ CODE FOR RANGE

2017-10-20 Thread Paul Schreiner
In your macro:Sub sbCompareColumns_2()     iCntr = 1     Do While Cells(iCntr, 1) <> ""     If UCase(Cells(iCntr, 1)) = UCase(Cells(iCntr, 2)) Then     Cells(iCntr, 3) = "Matched"     Else     Cells(iCntr, 3) = "Not Matched"     End If     iCntr = iCntr + 1     Loop

Re: $$Excel-Macros$$ Code to enter value in multiple worksheets

2017-01-04 Thread Mack Mans
http://tutorialway.com/use-named-range-in-excel/ helpful site -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread

Re: $$Excel-Macros$$ code requried

2016-04-29 Thread Paul Schreiner
What you're asking is easily done, in hundreds of different ways! The method you choose depends on your specific conditions and level of expertise.Have you done VBA programming before? What have you tried?Does the "destination" workbook already have sheets of the same name?Are you ADDING the

Re: $$Excel-Macros$$ Code in Workbook_Open macro inadvertently crashes the file!!!

2016-03-22 Thread Paul Schreiner
For your second question:Here's what I would do: Open a NEW workbook and create two macros:'Sub Events_Enabled()     Application.EnableEvents = True End Sub' Sub

Re: $$Excel-Macros$$ Code Loops indefiniely due to cell value

2015-07-27 Thread gargee28
its perfect! thanks a lot... :) Sent by Outlook for Android On Mon, Jul 27, 2015 at 5:02 AM -0700, ashish koul koul.ash...@gmail.com wrote: use application.enableevents = false at the beginning and application.enableevents = true at end On Mon, Jul 27, 2015 at 5:29 PM, gargee

Re: $$Excel-Macros$$ Code Loops indefiniely due to cell value

2015-07-27 Thread ashish koul
Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False If Target.Cells.Count = 1 Then If Target.Address = $K$2 Then ' ADD UR CODE HERE End If End If Application.EnableEvents = True End Sub On Mon, Jul 27, 2015 at 5:54 PM,

Re: $$Excel-Macros$$ Code Loops indefiniely due to cell value

2015-07-27 Thread gargee28
absolutely perfect now. thanks a lot. :) :) Sent by Outlook for Android On Mon, Jul 27, 2015 at 5:27 AM -0700, ashish koul koul.ash...@gmail.com wrote: Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False If Target.Cells.Count = 1 Then If

Re: $$Excel-Macros$$ Code Loops indefiniely due to cell value

2015-07-27 Thread ashish koul
use application.enableevents = false at the beginning and application.enableevents = true at end On Mon, Jul 27, 2015 at 5:29 PM, gargee singh garge...@hotmail.com wrote: Dear Experts I wrote a code to multiply or divide a range of numbers by 1000 if depending on whether a user selects

Re: $$Excel-Macros$$ Code Loops indefiniely due to cell value

2015-07-27 Thread gargee28
Hello, i just realized that it also runs the code when i change some other cell on the sheet e.g i use some other validation on the sheet or calculate something elsewhere , why would that happen. i want it to run the code only when cell k2 is changed to a yes or no. thanks again. Sent

Re: $$Excel-Macros$$ code vba pour une date automatique

2015-05-21 Thread elhechmi eladeb
thanks yes the problem is what you just said, each time you open the file the date changes. in this case I find a vien code in Internet. the problem that execute from i = 2 to i = 100 beyond the 100 code is not working. the code you find in this link:

Re: $$Excel-Macros$$ code vba pour une date automatique

2015-05-21 Thread Mustapha LMIDMANI
Please try to use function now() it gives the actual date and hour when you write it. but it will updated each time you open the file ... and this is not what you're looking for I think... 2015-05-21 16:43 GMT+01:00 siga eladebelhec...@gmail.com: bonjour je cherche un code vba qui affiche

Re: $$Excel-Macros$$ code vba pour une date automatique

2015-05-21 Thread Mustapha LMIDMANI
without reading in deep of the code, you can just give to i a verry big value this will solve your issue ? 2015-05-21 17:12 GMT+01:00 elhechmi eladeb eladebelhec...@gmail.com: thanks yes the problem is what you just said, each time you open the file the date changes. in this case I find a

Re: $$Excel-Macros$$ code vba pour une date automatique

2015-05-21 Thread elhechmi eladeb
thanks 2015-05-21 17:18 GMT+01:00 Mustapha LMIDMANI lmidmani.musta...@gmail.com: without reading in deep of the code, you can just give to i a verry big value this will solve your issue ? 2015-05-21 17:12 GMT+01:00 elhechmi eladeb eladebelhec...@gmail.com: thanks yes the problem is

Re: $$Excel-Macros$$ Code needed that would rename same name sub-folders

2013-08-01 Thread ashish koul
try this Public Const oldnm As String = f1 Public Const newnm As String = test_f1 Sub renam_folders() Dim fldpath As String Dim fso As Object, folder1 As Object fldpath = C:\Users\admin\Desktop\sample ' choose folder Set fso = CreateObject(Scripting.FileSystemObject) Set folder1 =

Re: $$Excel-Macros$$ code required to clear active sheet.

2013-05-14 Thread Prabhu Pinky
hi experts, i got the answer for my latest post. below is the one i found myself : Sub clearcontents() ActiveSheet.Cells.clearcontents End Sub Regards, Prabhu R On 15 May 2013 10:25, Prabhu Pinky prabhupin...@gmail.com wrote: hi experts, what is the code to clear the contents including

Re: $$Excel-Macros$$ code required to clear active sheet.

2013-05-14 Thread Prabhu Pinky
hi experts.. actually its not working... kindly help me on this...it clears only sheet 1 contents... if i select sheet 2 or other sheets and if i run the macro its not clearing. its works only on sheet 1. On 15 May 2013 10:35, Prabhu Pinky prabhupin...@gmail.com wrote: hi experts, i got

Re: $$Excel-Macros$$ code required to clear active sheet.

2013-05-14 Thread Abhishek Jain
It should work for all sheets upon selection. May be you have put it at a wrong place. See the attached example. HTH On Wed, May 15, 2013 at 10:55 AM, Prabhu Pinky prabhupin...@gmail.comwrote: hi experts.. actually its not working... kindly help me on this...it clears only sheet 1

Re: $$Excel-Macros$$ Code Automatically

2013-03-12 Thread Abhishek Jain
Can you also provide a sample output? On Tue, Mar 12, 2013 at 11:37 AM, Chaya chayamon...@gmail.com wrote: Dear Experts, Once more help please, i am a new learner in macros, i love it. right now i am learning by only recording the macros in excel. even i don't know how to declare vaue and

Re: $$Excel-Macros$$ Code Automatically

2013-03-12 Thread Chaya
Yes Sir, If you see the attached sheet, there one button is there, please click on that and go to second sheet. you will find that every time the datas are shifting down -Chaya On Tue, Mar 12, 2013 at 12:02 PM, Abhishek Jain abhishek@gmail.comwrote: Can you also provide a sample

Re: $$Excel-Macros$$ Code Automatically

2013-03-12 Thread Abhishek Jain
I still did not get your query. I have manually done what your code is doing...the data is shifting down because you added 54 rows there, but that's not my point of concern. I also did not understand what you meant by you have to click 6000 times. All your code is doing is copy and paste. Same

Re: $$Excel-Macros$$ Code Automatically

2013-03-12 Thread Chaya
Awesome Anil sir, as i expected you have solved my query. Thanks all for assist. Thanks once again. Sir, Can you please explain me your coding. step by step so that i can understand: Dim a As Integer Set ws = Worksheets(2) Dim b As String irow =

RE: $$Excel-Macros$$ Code Problem

2012-11-13 Thread SAJID MEMON
I have shared it but it not open from other PC except main (Lenovo) Subject: Re: $$Excel-Macros$$ Code Problem To: excel-macros@googlegroups.com From: v...@vabs.in Date: Tue, 13 Nov 2012 04:56:33 + Hi, You can access by this way also but for this to be worked your D drive should

Re: $$Excel-Macros$$ Code Problem

2012-11-13 Thread अनिल नारायण गवली
(Lenovo) -- Subject: Re: $$Excel-Macros$$ Code Problem To: excel-macros@googlegroups.com From: v...@vabs.in Date: Tue, 13 Nov 2012 04:56:33 + Hi, You can access by this way also but for this to be worked your D drive should be shared. Cheerz.. Sent on my

Re: $$Excel-Macros$$ Code Problem

2012-11-13 Thread Paul Schreiner
sajidwi...@hotmail.com To: Sundarvelan Natarajan excel-macros@googlegroups.com Sent: Mon, November 12, 2012 11:13:02 PM Subject: RE: $$Excel-Macros$$ Code Problem Dear My first machine name is Lenovo, 2nd name is Hp, third name id Dell. in all the machines D:\ drives is there, same path. Can i write

Re: $$Excel-Macros$$ Code Problem

2012-11-12 Thread Paul Schreiner
You really should use a better subject. just about everyone who posts here has a code problem You have not provided any indication either in the subject, or the body of your post as to what your problem is, or even the area of the problem. Some people here are EXPERTS in the use of pivot tables.

RE: $$Excel-Macros$$ Code Problem

2012-11-12 Thread SAJID MEMON
dell. please suggest me. Awaiting sajid Date: Mon, 12 Nov 2012 07:05:15 -0800 From: schreiner_p...@att.net Subject: Re: $$Excel-Macros$$ Code Problem To: excel-macros@googlegroups.com You really should use a better subject. just about everyone who posts here has a code problem You have

Re: $$Excel-Macros$$ Code Problem

2012-11-12 Thread vba
Natarajanexcel-macros@googlegroups.com Reply-To: excel-macros@googlegroups.com Subject: RE: $$Excel-Macros$$ Code Problem Dear My first machine name is Lenovo, 2nd name is Hp, third name id Dell. in all the machines D:\ drives is there, same path. Can i write \\Lenovo\d\12-13\book1.xls or \\Hp

Re: $$Excel-Macros$$ Code for range shifting based on month

2012-05-04 Thread ashish koul
see if it helps cell c3 enter this formula =SUMPRODUCT(--($A$104:$A$65536=DATE(LEFT($A3,4),RIGHT($A3,2),1)),--($A$104:$A$65536DATE(LEFT($A3,4),RIGHT($A3,2)+1,1)),--($B$104:$B$65536=$B3)*(C$104:C$65536)) On Thu, May 3, 2012 at 12:11 PM, Darwin Chan darwin.chankaw...@gmail.comwrote: Dear all,

Re: $$Excel-Macros$$ Code for extracting google search results in excel

2012-03-30 Thread ashish koul
Hi seema long time back I created this addin to search on Google . I am not sure how much accurate result will it give now . you can try it and make changes in the code as per your requirement. Download Link http://www.box.com/s/ab954ee4970bae3bf815 (File is too heavy so i have uploaded it on

RE: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-30 Thread Rajan_Verma
For deleting all files from a folder.. Sub deleteFiles() Dim MyFile As File Dim MyFolder As Folder Dim fso As Scripting.FileSystemObject Set fso = New Scripting.FileSystemObject Set MyFolder = fso.GetFolder(YourFolderPath) For Each MyFile In MyFolder.Files

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-27 Thread Mr excel
into a regular module. Change the date, folder, as I said.. It’s automatic based on the date. Don Guillett SalesAid Software dguille...@gmail.com *From:* Mr excel excelkeec...@gmail.com *Sent:* Wednesday, January 25, 2012 6:51 PM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-27 Thread Mr excel
, 2012 6:51 PM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ Code for deleting files in a folder. thanks a lot guillet for your support.i would further like to know whether this code works simply by installing it in the code window of an excel sheet and triggers itself

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-27 Thread NOORAIN ANSARI
on the date. Don Guillett SalesAid Software dguille...@gmail.com *From:* Mr excel excelkeec...@gmail.com *Sent:* Wednesday, January 25, 2012 6:51 PM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ Code for deleting files in a folder. thanks a lot guillet for your support.i

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-27 Thread dguillett1
If placed in the Thisworkbook module in the workbook_open event it will fire when you open the workbook. Don Guillett SalesAid Software dguille...@gmail.com From: Mr excel Sent: Friday, January 27, 2012 6:05 AM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Code for deleting

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-25 Thread dguillett1
VBA Should do it. Change date and folder and file type to suit. Sub DeleteFilesIfDay() If Date = DateValue(1/25/2012) Then On Error Resume Next Kill C:\yourfoldernamehere\*.* On Error GoTo 0 End If End Sub Don Guillett SalesAid Software dguille...@gmail.com From: Mr excel Sent: Wednesday,

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-25 Thread Mr excel
thanks a lot guillet for your support.i would further like to know whether this code works simply by installing it in the code window of an excel sheet and triggers itself on that particular date (checking the date with the system date). Tell me how to get this code work with out any problems.

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-25 Thread dguillett1
Just copy into a regular module. Change the date, folder, as I said.. It’s automatic based on the date. Don Guillett SalesAid Software dguille...@gmail.com From: Mr excel Sent: Wednesday, January 25, 2012 6:51 PM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Code

Re: $$Excel-Macros$$ Code for deleting files in a folder.

2012-01-25 Thread Mr excel
excelkeec...@gmail.com *Sent:* Wednesday, January 25, 2012 6:51 PM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ Code for deleting files in a folder. thanks a lot guillet for your support.i would further like to know whether this code works simply by installing it in the code

RE: $$Excel-Macros$$ code

2012-01-20 Thread Rajan_Verma
Try this : =REPLACE(REPLACE(A1,3,2,.),6,5,.) From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Mohammed Muneer Sent: Jan/Thu/2012 09:56 To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ code I want to change this column A to column G (means I

RE: $$Excel-Macros$$ code

2012-01-18 Thread Mohammed Muneer
@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of NOORAIN ANSARI Sent: Thursday, January 19, 2012 8:41 AM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ code Dear Muneer, You can use finally this formula in G1 =LEFT(A1,2).MID(A1,5,3).RIGHT(A1,1) hope it help

Re: $$Excel-Macros$$ code

2012-01-18 Thread NOORAIN ANSARI
, 2012 8:41 AM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ code ** ** Dear Muneer, You can use finally this formula in G1 =LEFT(A1,2).MID(A1,5,3).RIGHT(A1,1) hope it help to you.. otherwise i wll send you macro(VBA Code).. See attached sheet. -- Thanks

Re: $$Excel-Macros$$ Code in the userform for date validation not working properly

2011-11-28 Thread NOORAIN ANSARI
Dear Santosh, Please see attached sheet i hope it will help to you. -- Thanks regards, Noorain Ansari *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/ *http://noorain-ansari.blogspot.com/* http://noorain-ansari.blogspot.com/ On Mon, Nov 28, 2011 at 3:00 PM, santosh

Re: $$Excel-Macros$$ Code in the userform for date validation not working properly

2011-11-28 Thread Sam Mathai Chacko
A TEXT can never be lesser than a number. At least in the Excel world. Santhosh, please replace the entire code in form1 with this Private Sub CommandButton1_Click() If CDate(TextBox1.Value) Date Then msg = MsgBox(You cannot make a transaction for a future date, vbCritical, Your

Re: $$Excel-Macros$$ Code to control the database not to accept repeated number

2011-09-09 Thread Shankar Bheema
thank you all very muchh On Fri, Sep 9, 2011 at 10:51 AM, Venkat CV venkat1@gmail.com wrote: Hi Bheema, See below image and Try Data Validation and use custom and formula as * =COUNTIF(C:C,C1)=1* [image: image.png] *Best Regards,* *Venkat * *Chennai* *My Linked in

RE: $$Excel-Macros$$ Code to control the database not to accept repeated number

2011-09-08 Thread Daniel
Use COUNTIF to check filenumber is unique : =COUNTIF(the filenumber column,filenumber)=0 Daniel -Message d'origine- De : excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] De la part de Bheema Shankar Envoyé : mardi 6 septembre 2011 16:40 À : MS EXCEL AND VBA MACROS

Re: $$Excel-Macros$$ Code to control the database not to accept repeated number

2011-09-08 Thread NOORAIN ANSARI
Dear Bheema, Please see attached Sheet... On Tue, Sep 6, 2011 at 8:10 PM, Bheema Shankar shankar.n...@gmail.comwrote: I made a userform. linked it with the datasheet. the filenumber acts as a bridge between userform and datasheet. I have to make the file number unique in excel.

Re: $$Excel-Macros$$ Code to control the database not to accept repeated number

2011-09-08 Thread Venkat CV
Hi Bheema, See below image and Try Data Validation and use custom and formula as * =COUNTIF(C:C,C1)=1* [image: image.png] *Best Regards,* *Venkat * *Chennai* *My Linked in profile http://in.linkedin.com/pub/venkatesan-c/21/492/a71* * * On Tue, Sep 6, 2011 at 8:10 PM, Bheema Shankar

Re: $$Excel-Macros$$ code for search

2011-09-07 Thread dguillett1
How about a formula =INDEX(A:B,IF(ISNA(MATCH(E4,B:B,0)),MATCH(E4,A:A,0),MATCH(E4,B:B,0)),IF(NOT(ISNUMBER(E4)),1,2)) From: Shankar Bheema Sent: Wednesday, September 07, 2011 8:14 AM To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ code for search Hai all good evening I am

Re: $$Excel-Macros$$ code for search

2011-09-07 Thread Shankar Bheema
not working. and where to put this code. I made it on userform not on sheet. So in your formula there is no representation of the objects na. how it works ? On Wed, Sep 7, 2011 at 7:20 PM, dguillett1 dguille...@gmail.com wrote: How about a formula

Re: $$Excel-Macros$$ code for search

2011-09-07 Thread dguillett1
I’m one of those people who doesn’t much care for pivot tables and userforms. KISS (Keep it simple, stupid). Not meant personally. From: Shankar Bheema Sent: Wednesday, September 07, 2011 9:04 AM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ code for search not working

Re: $$Excel-Macros$$ code for search

2011-09-07 Thread Shankar Bheema
*Sent:* Wednesday, September 07, 2011 9:04 AM *To:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ code for search not working. and where to put this code. I made it on userform not on sheet. So in your formula there is no representation of the objects na. how it works

RE: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-09 Thread Kevin gray
-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word. Date: Mon, 8 Aug 2011 14:40:00 -0500 What do you need to do in Word that you can't do in excel? -Original Message- From: skyping1 Sent: Monday, August 08, 2011 12:07

Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-08 Thread skyping1
Anyone have any ideas on this please? On Aug 3, 9:50 pm, Kevin gray kevinrobertg...@hotmail.com wrote: Please see attachments Date: Wed, 3 Aug 2011 07:48:44 +0530 Subject: Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word. From: venkat1@gmail.com

Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-08 Thread dguillett1
What do you need to do in Word that you can't do in excel? -Original Message- From: skyping1 Sent: Monday, August 08, 2011 12:07 PM To: MS EXCEL AND VBA MACROS Subject: Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word. Anyone have any ideas

RE: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-02 Thread Rajan_Verma
Please Attached a sample file -Original Message- From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of skyping1 Sent: Tuesday, August 02, 2011 12:07 AM To: MS EXCEL AND VBA MACROS Subject: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled

Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-02 Thread skyping1
Please find attached files...hope you can help On Aug 2, 10:23 am, Rajan_Verma rajanverma1...@gmail.com wrote: Please Attached  a sample file -Original Message- From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of skyping1 Sent: Tuesday,

Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-02 Thread skyping1
Please see the following link, as I cant seem to upload files to this site: http://www.excelforum.com/excel-programming/784924-export-all-worksheets-in-order-to-word-including-pictures-etc.html Thanks! On Aug 2, 10:23 am, Rajan_Verma rajanverma1...@gmail.com wrote: Please Attached  a sample

Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-02 Thread Venkat CV
Hi There is No attachment. *Best Regards,* *Venkat* *Chennai* On Tue, Aug 2, 2011 at 10:41 PM, skyping1 kevinrobertg...@hotmail.comwrote: Please find attached files...hope you can help On Aug 2, 10:23 am, Rajan_Verma rajanverma1...@gmail.com wrote: Please Attached a sample file

Re: $$Excel-Macros$$ Code need to Transfer Excel worksheets labelled 1 to X to Word.

2011-08-01 Thread ashish koul
can you attach any workbook and word document how you will like the output to be On Tue, Aug 2, 2011 at 12:06 AM, skyping1 kevinrobertg...@hotmail.comwrote: I have many Excel files in a folder which all have labelled Worksheets from 1 to X where X is always an integer. Most of the files have

Re: $$Excel-Macros$$ code explanation please

2011-03-18 Thread Skanda
The data actually pouplates till AS column.When the report is generated it stops at cloumn AL. Does this array thing has to do anything about it? Application.StatusBar = Please Wait.Loading Trim(Prod) Data File Workbooks.OpenText FileName:=FileLoc, Origin _ :=xlWindows,

Re: $$Excel-Macros$$ code explanation please

2011-03-15 Thread STDEV(i)
excel is opening a text File the array are data for column index and length of string string to be converted to a cells Array(Array(1, 2), Array(2, 4)) text file contents: ABCDEFG converted to 2 columns column 1 = AB column 2 = CDEF If you use [Text To Column] ( of DATA menu) you will

RE: $$Excel-Macros$$ CODE DOESN'T WORK

2011-02-21 Thread Daniel
: Re: $$Excel-Macros$$ CODE DOESN'T WORK thanks Daniel Ji for the reply... here what I need and what the code doesn't do. This code runs as long as the Sheets(1).Cells(2, ColNumber) = Sheets(Name).Cells(RowCounter, 1) but doesn't do the job. I have some data with a lot of variables in sheet 1

Re: $$Excel-Macros$$ CODE DOESN'T WORK

2011-02-21 Thread Paul Schreiner
@googlegroups.com Sent: Mon, February 21, 2011 10:40:31 AM Subject: RE: $$Excel-Macros$$ CODE DOESN'T WORK The code is correct. Simply, there is no match and the test is always false. Can you post your data ? Daniel   De :excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] De la

Re: $$Excel-Macros$$ CODE DOESN'T WORK

2011-02-21 Thread rakesh kumar
*To:* excel-macros@googlegroups.com *Sent:* Mon, February 21, 2011 10:40:31 AM *Subject:* RE: $$Excel-Macros$$ CODE DOESN'T WORK The code is correct. Simply, there is no match and the test is always false. Can you post your data ? Daniel *De :* excel-macros@googlegroups.com [mailto:excel

Re: $$Excel-Macros$$ Code Help

2010-08-09 Thread Nikhil Shah
Hi Mithlesh, Thanks for sending formula..it solve my problem.. Regards Nikhil On Mon, Aug 9, 2010 at 12:15 AM, Mithlesh Sharma mtshar...@gmail.comwrote: Hi Nikhil, Try this one, will give result in VPS. Vishal Pravinchandra Shah =LEFT(A1,1)MID(A1,FIND( ,A1,1)+1,1)MID(A1,SEARCH(

Re: $$Excel-Macros$$ Code Help

2010-08-08 Thread Mahesh parab
Hi Nikhil Insert this code in a standard module Function FirstLetters(rng As Range) As String Dim arrWords Dim I As Long arrWords = Split(rng, ) If IsArray(arrWords) Then For I = LBound(arrWords) To UBound(arrWords) FirstLetters = FirstLetters Left(arrWords(I), 1)

Re: $$Excel-Macros$$ Code or Formula Required

2010-03-26 Thread Puttaswamy
Attached is the spread sheet. Please do the needful. On Fri, Mar 26, 2010 at 12:49 PM, Puttu puttu...@gmail.com wrote: Hi Group, I have sheet where I get a details of the company in different format, which the output need in one excel row. Example Jamrut Trading Co. Send Mail

Re: $$Excel-Macros$$ Code User Laval

2010-01-10 Thread SUMIT VYAS
GREAT ANKUR On Sat, Jan 9, 2010 at 10:32 AM, ankur ankurpande...@gmail.com wrote: hi ramesh please check this file On 1/8/10, Chanti-Hyderabad ramesh1...@gmail.com wrote: Hi Ankur, That working file looks awesomebut i cant see see any data on 'New Data' sheet. Is there a way i

Re: $$Excel-Macros$$ Code User Laval

2010-01-08 Thread Chanti-Hyderabad
Hi Ankur, That working file looks awesomebut i cant see see any data on 'New Data' sheet. Is there a way i can see the data change according to my requirement? Thanks in Advance, Ramesh On Jan 7, 4:33 pm, ankur ankurpande...@gmail.com wrote: hi sumit please check the attached file if

Re: $$Excel-Macros$$ Code User Laval

2010-01-06 Thread SUMIT VYAS
Dear Madhu This Sheet Not A Formulas V Lookup Ok On Wed, Jan 6, 2010 at 8:17 PM, madhu nair madhuna...@gmail.com wrote: Hi SUmit, I added Vlookup, i think thats what you need, check attached sheet, On Wed, Jan 6, 2010 at 7:07 PM, SUMIT VYAS svyas0...@gmail.com wrote: Dear, I Make

Re: $$Excel-Macros$$ Code User Laval

2010-01-06 Thread ankur
hi sumit please tell me your requiremnet On 1/7/10, SUMIT VYAS svyas0...@gmail.com wrote: Dear Madhu This Sheet Not A Formulas V Lookup Ok On Wed, Jan 6, 2010 at 8:17 PM, madhu nair madhuna...@gmail.com wrote: Hi SUmit, I added Vlookup, i think thats what you need, check attached

Re: $$Excel-Macros$$ Code User Laval

2010-01-06 Thread SUMIT VYAS
Dear Ankur, Thanks For Your Reply I want Make Excel Advance Lavel I show Code But I Hide Code This List No Report Gen rate I want Milty User Working This Excel Report Gen rate One Time . On Thu, Jan 7, 2010 at 11:47 AM, ankur ankurpande...@gmail.com wrote: hi sumit please tell me your