Re: $$Excel-Macros$$ How to use VLOOKUP formula using Array code.

2016-05-09 Thread karthik kumar
Hi Paul, Thank you so much for your input. It worked really well. You made my day. Your code is just awesome. Thanks again. Regards, Karthikumar S On Mon, May 9, 2016 at 8:34 PM, Paul Schreiner wrote: > In Excel2007, Microsoft introduced a "feature" in which, if >

Re: $$Excel-Macros$$ Macros

2016-05-09 Thread Paul Schreiner
"Is there a macro that can do this"? No"Can a macro be written to do this"? Yes What I would do: I see three files:Macro FileInput FileOutput File The macro Initializes an Output worksheet, then reads in the data from the Input file and writes it to the Output sheet (with the updated

Re: $$Excel-Macros$$ Browsing through all open workbooks

2016-05-09 Thread Paul Schreiner
instead of "like", the function you're looking for is Instr() so, your macro should look something like: Sub Test()     Dim wb As Workbook     Dim DestinationFile As String, SourceFile As String         For Each wb In Workbooks     If (InStr(1, wb.Name, "D") > 0) Then    

Re: $$Excel-Macros$$ How to use VLOOKUP formula using Array code.

2016-05-09 Thread Paul Schreiner
In Excel2007, Microsoft introduced a "feature" in which, if the CPU Processing exceeds some level, the Windows "priority" is reduced.presumably to allow the user to continue working without Excel grabbing all of the CPU cycles. What that DOES though, is make Excel use a reduced number of CPU

Re: $$Excel-Macros$$ HELP REQUIRED TO ESTABLISH FORMULA

2016-05-09 Thread Paul Schreiner
Welcome!glad you could join us. As a GROUP, we offer our assistance free of charge.However, sometimes the project requires a great deal of time and effort. SOME of our members do this type of work for a living and may ask for compensation for large projects.If that were to happen, that is worked

Re: $$Excel-Macros$$ Remove all macros from all the excel files on a computer

2016-05-09 Thread Paul Schreiner
The only way I can think of immediately is to use Excel 2010 or 2013 and have a  macro that opens all excel files on a computer and  saves the file in .xlsx format.You can turn off prompts by using Application.DisplayAlerts = false Your macro should also disable automatic macros when opening the

Re: $$Excel-Macros$$ Re: needed formula to convert hejri date to gregorian date

2016-05-09 Thread Rabindra Thapa
attached file... On Mon, May 9, 2016 at 10:38 AM, Aindril De wrote: > Didn't find the attachment. > Found these two articles that would help: > > http://www.mrexcel.com/forum/excel-questions/534307-hijra-date-into-gregorian.html > >

Re: $$Excel-Macros$$ Error in Excel-VB macro

2016-05-09 Thread Paul Schreiner
The problem seems to be that some protection flag for the workbook is set.I'm using Excel 2010, and for some reason, on the Review tab, the Protect Workbook icon doesn't SHOW that it is protected. But I protected the workbook (with password) and then unprotected it. After that, the macros work

$$Excel-Macros$$ How to calculate TAT from created & solved date timestamp

2016-05-09 Thread Devendra Sahay
Hi Experts, Currently am facing issue to calculate TAT of user request from their created & solved time, but am not satisfied with the output. So please check the attached file & Pivot. 1) want to extract TAT with NOW function 2) want to group the count & contribution in 4 groups 24 Hours,48

$$Excel-Macros$$ HELP REQUIRED TO ESTABLISH FORMULA

2016-05-09 Thread Atif Sheeraz
Got your email address from discussion excel website, If you could help me to establish formula in the attached excel sheet. I have mentioned the data available format and the required format by utilizing the available data. IMPORTANT NOTE: I have to work multiple times on the data, therefore if

$$Excel-Macros$$ Re: Change Cell Color when value entered

2016-05-09 Thread Maciej Piotrowicz
Hello I presume that you will paste data to this sheet. If yes I would use separate macro for colouring cells using loop above selected range (this macro can be called using event procedure worksheet_change as belowe- not tested). Private Sub Worksheet_Change(ByVal Target As Range) If