$$Excel-Macros$$ copy new column from sheet 1 and paste to sheet 2

2016-02-03 Thread Kat
Hi all, I have a workbook in which the row is fixed (eg. from column A to C) and the user will keep adding new column (eg. from adding data in Column D to E first time, second time adding data in column F to H) in Sheet 1. Everytime when new column is added in Sheet1, I want it to be automatica

Re: $$Excel-Macros$$ compare columns through for loop

2016-02-03 Thread Kat
It works perfect. Thanks a lot for your help. On Wednesday, 3 February 2016 15:58:48 UTC+8, era_kar wrote: > > Hi, > I enclose which may solve ur request. > > > > -- > *From:* Kat > > *To:* MS EXCEL AND VBA MACROS > > *Sent:* Wednesday, February 3, 2016 6:28 AM > *Subj

Re: $$Excel-Macros$$ Get files in a New folder with help of Macro

2016-02-03 Thread Mandeep baluja
Resolution Try this Regards, Try to change the directory path and run the macro where you have access. Mandeep baluja Examine the path of the WebDir and DBDir folders. To do this, log into Forecaster by using the SYS user and then clicking the company link. Both the WebDir and the DBDir folder

$$Excel-Macros$$ Re: VBA access to sheets on Google Drive

2016-02-03 Thread Mandeep baluja
Hey paul, I tried the same what I attempted before sometime is trying to open the google sheet through internet explorer with vba code and send the keystrokes to download the file option, but I was unsuccessful because Internet explorer is not correct browser same keystrokes works in googlechr

$$Excel-Macros$$ VBA access to sheets on Google Drive

2016-02-03 Thread Paul Schreiner
I've tried Googling this, with mixed results, so I thought I'd bring it to this group. I'm working with a team of students that are updating sheets on a Google Drive. One of the student is opening each of the Google Sheets and coping the test data into an Excel workbook and using macros to gene

$$Excel-Macros$$ Urgent need Peoplesoft Tech Expences--Houston, TX

2016-02-03 Thread MADHU-GenuineItLlc
Hi Partner, Hope you are doing great … Please send resume to ma...@genuineitllc.com *Title: PeopleSoft Technical Expenses Consultant * *Location : Houston, TX* SUMMARY: Responsible for providing technical/functional support for PeopleSoft modules such as Accounts Payable, Commitment Contro

Re: $$Excel-Macros$$ Comment macro code with macros (not manually)

2016-02-03 Thread Paul Schreiner
I take it you are trying to say that you want to "comment out" the Msgbox line?  One solution would be to:Export the macro moduleUse Textstream Object to edit the exported ascii file.Remove the macro moduleImport the edited module. Now, this would only work on "standard" modules.Because I don't th

Re: $$Excel-Macros$$ Defining Name Ranges in Excel for different selection region using VBA/Macro

2016-02-03 Thread Paul Schreiner
First, you must decide if the "Name" for the "Named Range" applies for the entire workbook, or just the sheet.If it's the entire workbook, then if you are in another sheet, and refer to the Named Range, it will refer to the range on the specified sheet.If it applies to the SHEET, then you can ha

$$Excel-Macros$$ Re: Defining Name Ranges in Excel for different selection region using VBA/Macro

2016-02-03 Thread Mandeep Baluja
> > check my code > https://groups.google.com/forum/?hl=en%3Fhl%3Den#!searchin/excel-macros/mandeep%7Csort:date/excel-macros/x6VYCJQs1lg/7lMf8CAuDgAJ Regards, Mandeep baluja https://www.linkedin.com/messaging/thread/6086488646137958400 -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And

$$Excel-Macros$$ Re: Defining Name Ranges in Excel for different selection region using VBA/Macro

2016-02-03 Thread Mandeep Baluja
> > check my code > https://groups.google.com/forum/?hl=en%3Fhl%3Den#!searchin/excel-macros/mandeep%7Csort:date/excel-macros/x6VYCJQs1lg/7lMf8CAuDgAJ Regards, Mandeep baluja https://www.linkedin.com/messaging/thread/6086488646137958400 -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And

$$Excel-Macros$$ Re: Comment macro code with macros (not manually)

2016-02-03 Thread Mandeep Baluja
> > Haha :P Can you please let us know what will be the use of this ? Okay > check this out !!! Enable the trust center to programatically access vba > modules Sub AddProcedureToModule() Dim VBProj As VBIDE.VBProject Dim VBComp As VBIDE.VBComponent Dim CodeMod As VBIDE

Re: $$Excel-Macros$$ Excel Exctact Data

2016-02-03 Thread Vijayendra Rao
Thank you very much Abhishek your help. I am facing issue in name and verifier column as you have given number of character 30, If any employee name is very short, then it will capture the next word (eg. Serial). Rest of the columns are fine. Regards, Vijayendra 2016-02-03 13:28 GMT+05:30 Abhishe

$$Excel-Macros$$ Comment macro code with macros (not manually)

2016-02-03 Thread XL Macros
Hi All, Can we comment few line of code in existing macros using macros ? For more clarity on my question, i'm giving below macro code *Sub selectshapes()* *Dim shp As Shape* *For Each shp In ActiveSheet.Shapes* *ActiveSheet.Shapes(shp.name ).Select* *Select