$$Excel-Macros$$ Re: vba code to convert PDF to Excel

2018-11-28 Thread David McCue
e("00:00:03") ' wait 3 seconds DoEvents 'IN ACROBAT : 'SELECT ALL SendKeys "^a" 'COPY SendKeys "^c" 'EXIT (Close & Exit) SendKeys "^q" 'Wait some time Application.Wait Now + TimeValue("00:00:03") ' wait 3 se

Re: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 1 update in 1 topic

2018-04-30 Thread David Lanman
Hello Kaushik, I am sorry, but can you send me what you had posted before? I have lost the original description of you needs. Thanks, David On Sun, Apr 29, 2018 at 4:25 PM, wrote: > excel-macros@googlegroups.com > <https://groups.google.com/forum/?utm_source=digest&utm_medium

Re: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 15 updates in 13 topics

2018-04-25 Thread David Lanman
Is this group no longer for asking questions about Excel VBA? I see nothing but hiring information and nothing about VBA. Thanks, David On Wed, Apr 25, 2018 at 4:23 PM, wrote: > excel-macros@googlegroups.com > <https://groups.google.com/forum/?utm_source=digest&utm_medium=email

Re: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 4 updates in 2 topics

2018-03-07 Thread David Lanman
These are examples of using several line breaks. I hope they will help: 1) qurl = "http://finance.google.com/finance/historical?q="; & Sym qurl = qurl & "&startdate=" & MonthName(Month(StartDate), True) & _ "+" & Day(StartDate) & "+" & Year(StartDate) & _ "&enddate=" & MonthName(Month(End

Re: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 2 updates in 2 topics

2018-02-24 Thread David Lanman
Can you specify the number of decimal places you want? Or does that change and if so can you specify the conditions that will give specific decimal places? Thanks, David On Sat, Feb 24, 2018 at 3:32 PM, wrote: > excel-macros@googlegroups.com > <https://groups.google.com/forum/?u

Re: $$Excel-Macros$$ Pivot Help

2018-02-02 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Fri, 2/2/18, 'Liberty Stringer' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ Pivot Help To: excel-macros@googlegroups.com Date: Friday, February 2, 2018, 4:20 AM On Wed, 1/3

Re: $$Excel-Macros$$ Pivot Help

2018-01-30 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Tue, 1/30/18, 'Storey Thomas' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ Pivot Help To: excel-macros@googlegroups.com Date: Tuesday, January 30, 2018, 2:58 PM On Tue, 1/30

Re: $$Excel-Macros$$ macros won't run as written

2018-01-11 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Fri, 1/12/18, 'Kenyatta Freed' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ macros won't run as written To: excel-macros@googlegroups.com Date: Friday, January 12, 2018, 4:27 AM -

Re: $$Excel-Macros$$ Re: concatenate in one cell

2017-12-30 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
he above,   assuming the data is in the addresses   used.   Thanks,   David     On   Saturday, December 23, 2017 at 1:39:57 AM UTC-8, Aamir   Shahzad wrote:Friends,   I want to concatenate all below   data in one cell without any space. Formula please.      data148351,1837

Re: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 4 updates in 3 topics

2017-12-19 Thread David Lanman
How about simply copy and paste values and do it to the the whole sheet? Sub CopyPastVal() Cells.Copy Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues Application.CutCopyMode = False End Sub Thanks, David On Tue, Dec 19, 2017 at 3:31 PM, wrote: > excel-mac

Re: $$Excel-Macros$$ reconiling large data in excel

2017-09-21 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Thu, 9/21/17, 'Carmelita Cronin' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ reconiling large data in excel To: excel-macros@googlegroups.com Date: Thursday, September 21, 2017, 3:28 PM

Re: $$Excel-Macros$$ Help on Week Formula

2017-07-30 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Sun, 7/30/17, 'Hopkins Ruben' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ Help on Week Formula To: excel-macros@googlegroups.com Date: Sunday, July 30, 2017, 3:31 PM On Sun

$$Excel-Macros$$ If and, then paste in relation to cell address.

2017-07-17 Thread David VanTil
The key piece that I seem to be struggling with is using a cell location as a reference to cut / paste. The idea is if there is a value in a cell on a row within a range, do something. What it does depends on the attributes of that cell. I will build a loop to go through different options

Re: $$Excel-Macros$$ Macro for Blank Cell and Duplicate Value

2017-07-06 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Thu, 7/6/17, Puttu * wrote: Subject: Re: $$Excel-Macros$$ Macro for Blank Cell and Duplicate Value To: "MS EXCEL AND VBA MACROS" Date: Thursday, July 6, 2017, 4:44 PM Hi Swapnil, Thanks you so much appreciate your time and help on gettin

Re: $$Excel-Macros$$ Macro for Blank Cell and Duplicate Value

2017-07-05 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Wed, 7/5/17, 'Yu Spain' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ Macro for Blank Cell and Duplicate Value To: excel-macros@googlegroups.com Date: Wednesday, July 5, 2017, 2:43 AM

$$Excel-Macros$$ IF AND, then Copy and Paste

2017-06-30 Thread David VanTil
I want to search rows within a range (D1:J100) in sheet1. If there is a value in a cell within the row, reference a separate cell on the same row but outside of the range, which identifies the type of content. The reference column is a fixed location (B1:B100) Based on the type of content, select

Re: $$Excel-Macros$$ Re: Required break chart in excel

2017-06-17 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Sat, 6/17/17, amar takale wrote: Subject: Re: $$Excel-Macros$$ Re: Required break chart in excel To: excel-macros@googlegroups.com Date: Saturday, June 17, 2017, 7:10 AM no,I have got it but how to done it?I will try but not success,if poss

Re: $$Excel-Macros$$ Need help in Macro to convert table into dump.

2017-06-02 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Fri, 6/2/17, 'Yu Spain' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ Need help in Macro to convert table into dump. To: excel-macros@googlegroups.com Date: Friday, June 2, 2017, 4:22 AM -

Re: $$Excel-Macros$$ Digest for excel-macros@googlegroups.com - 2 updates in 2 topics

2017-05-29 Thread David Lanman
It seems the first question must be "what is purpose, what are you trying to accomplish?" thanks, David On Mon, May 29, 2017 at 4:26 PM, wrote: > excel-macros@googlegroups.com > <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/excel-macros/top

Re: $$Excel-Macros$$ Re: Macros for screenshot

2017-04-09 Thread 'Martinez David' via MS EXCEL AND VBA MACROS
On Sun, 4/9/17, 'Martin George' via MS EXCEL AND VBA MACROS wrote: Subject: Re: $$Excel-Macros$$ Re: Macros for screenshot To: excel-macros@googlegroups.com Date: Sunday, April 9, 2017, 2:02 AM On

$$Excel-Macros$$ How do I arrange formula in Microsoft Excel

2016-07-14 Thread David Jones
Hi, Can any one please help me to arrange a formula, so that if the number in a selected cell increases, the corresponding answer in another cell will increase accordingly. How do i arrange the formula in Excel, so that if Q35(cell number)=1, the answer (in cell C5) is 0;

$$Excel-Macros$$ Plz Solve this

2016-05-04 Thread Sushma David
Hi Champs, Please solve this query. Regards, -- 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 threa

Re: $$Excel-Macros$$ Count If Cell Contains

2015-09-07 Thread &#x27;David Lanne' via MS EXCEL AND VBA MACROS
Thank you very much On Tuesday, September 8, 2015 2:17 AM, Swapnil Palande wrote: Great...Learned somthing new today... Thanks Abhishek. Regards,Swapnil Palande On Tue, Sep 8, 2015 at 11:33 AM, Abhishek Jain wrote: Just one correction, if I may: Countif(A1:A100,"(IRE)") would only

$$Excel-Macros$$ Count If Cell Contains

2015-09-07 Thread &#x27;David Lanne' via MS EXCEL AND VBA MACROS
rmula that will count (IRE), (GB), etc etcAny help would be appreciated. Thanks,David Lanne -- 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 co

$$Excel-Macros$$ Re: Want to get your question answered quickly?

2015-08-31 Thread David Miller
Hi I'm David Miller from Tamilnadu, my company name is Crystal broadband networks, i need your help in an excel file which can reduce my work if i can use a macro, i have mentioned below the file which i will download in excel format from my CRM and it looks

$$Excel-Macros$$ Need to merge excel files whilkt maintaining their links to a Powerpoint file

2015-05-19 Thread David Stubbs
Hello, I have several excel files with active links to a PowerPoint file. I need to combine the Excels into one, but any way i try to do so breaks the links. Is there a way to combine the files whilst maintaining the links? Thanks in advance David -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in

$$Excel-Macros$$ Please solve this

2015-02-23 Thread Sushma David
-- 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, F

Re: $$Excel-Macros$$ How to learn VBA or MACORS myself at home???

2014-07-14 Thread &#x27;David Lanne' via MS EXCEL AND VBA MACROS
Slaying Excel Dragons by Mike Girvin is a good book. I still can't figure out all the language stuff. But what helped me was recording marcos doing simple stuff, (ex renaming sheets, sorting data, etc) then stepping into the marco and I could see what its doing, which helped down the line when I

$$Excel-Macros$$ Re: how to crack Excel VBA password

2014-06-15 Thread David Sands
Hiya, Can anyone please recover the VBA password(s) for this file, I have recovered the excel (2010 macro enabled workbook) workbook and worksheet passwords. https://drive.google.com/file/d/0Bw6W1WHEetl7LUZyWC13WWw5cUU/edit?usp=sharing I have tried a few freeware VBA password recovery programm

$$Excel-Macros$$ EXCEL 3D - Easy as 1-2-3 and A-B-C

2014-06-11 Thread David Hager
http://bit.ly/1jgNIu9 -- 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$$ Urgent help plss..

2013-05-28 Thread David Grugeon
Perhaps you have more than one sheet selected. Regards David Grugeon On 28 May 2013 14:37, Prabhu Pinky wrote: > hi experts > > I have one excel, from that excel I am unable to copy and paste the data > to new excel..even a single cell..am getting "this command is cannot

Re: $$Excel-Macros$$ IF / Nested IF Formula Help **URGENT**.

2013-05-27 Thread David Grugeon
I think you would do better to use a pivot table. Dates can be based on weeksfor the summarisation. Regards David Grugeon On 28 May 2013 12:17, Yogesh Vyas wrote: > Hi Team, > > I need IF/Nested IF Formula for Supplier Aging Analysis. Please find > attach data for the

Re: $$Excel-Macros$$ How to split cell in Excel

2013-05-27 Thread David Grugeon
might be possible if you have it rght aligned in a cell and put the horizontal text, a space, and the first letter of the vertical text, an Alt-return, the next vertical letter, and so on like this *fred F* *R* *E* *D* Regards David Grugeon On 27 May 2013 16:59, Prathap wrote: > Hi Expe

Re: $$Excel-Macros$$ Macro Help

2013-05-27 Thread David Grugeon
Bulloo Shire Council in Thargomindah Queensland Australia. Regards David Grugeon On 27 May 2013 16:13, VBA VABZ wrote: > hey > > for which co you work. > > thx > > > On Mon, May 27, 2013 at 7:20 AM, Bv Dileep wrote: > >> Hello, >> >&g

Re: $$Excel-Macros$$ Macro Help

2013-05-26 Thread David Grugeon
roduce the entire code for you that is a consulting job. I currently charge my clients AUD 140 per hour for such services. If you do it yourself you will be better placed to cope with other issues in the future. Regards David Grugeon On 27 May 2013 11:50, Bv Dileep wrote

Re: $$Excel-Macros$$ Material In Out Register (Stock Register)

2013-05-25 Thread David Grugeon
cel-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.goog

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

2013-05-23 Thread David Grugeon
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 Pink

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

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

2013-05-23 Thread David Grugeon
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" > op

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 t

Re: $$Excel-Macros$$ External excel file insert to single excel file

2013-05-22 Thread David Grugeon
Can they open the files through the network manually while the files are on you computer On Wednesday, 22 May 2013, Chaya wrote: > Dear experts, > > > I have more then three excel (Say A, B, C) file in under folder > (D:\Master File). Now I have a single workbook know as “Master file”. In > t

Re: $$Excel-Macros$$ External excel file insert to single excel file

2013-05-22 Thread David Grugeon
p 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')

Re: $$Excel-Macros$$ Vlookup value with comments

2013-05-18 Thread David Grugeon
Excel can do it but unfortunately the restriction not to use VBA prevents it. Perhaps you should talk to your IT department and ask them how to solve it. Regards David Grugeon On 19 May 2013 07:02, santosh subudhi wrote: > Hi Group, > > Attached is the sample sheet where in the comm

Re: $$Excel-Macros$$ Macros Tips

2013-05-17 Thread David Grugeon
e done and what it is doing wrong. If there are any error messages write them down exactly and tell us, if it is possible to find out, what line the error occurred on. Above all, just keep writing and testing code and you will soon be one of the ones giving the answers on the list. Regards Dav

Re: $$Excel-Macros$$ Am new to VBA - help me to became expert.

2013-05-17 Thread David Grugeon
Did you mean to attach the file? Regards David Grugeon On 17 May 2013 14:32, P.VIJAYKUMAR wrote: > Respected Prabhu, > > Hope this file will be of little help to u. > > > Regards, > VIJAYKUMAR > > > On Tue, May 14, 2013 at 9:08 PM, Prabhu Pinky wrote: > >

Re: $$Excel-Macros$$ Combine Data From Two Sheets into a Single Sheet

2013-05-16 Thread David Grugeon
need on row 7 If(A7="","",the formula) I hope this is clear. Regards David Grugeon On 17 May 2013 10:50, Christopher Kevin wrote: > David, thank you it worked perfectly, however, when I use the fill handle > to drag and fill down I ended up with 0, #NA and 0/01/190

Re: $$Excel-Macros$$ Copying cells while keep cell references

2013-05-16 Thread David Grugeon
End Sub Regards David Grugeon On 17 May 2013 07:44, David Grugeon wrote: > The main issue is where the references point. If they are pointing within > the block you are copying, there is no issue as they will continue to point > to the appropriate cells within the block. If th

Re: $$Excel-Macros$$ Copying cells while keep cell references

2013-05-16 Thread David Grugeon
MyConvertFormulas() Dim oRange As Range Dim c as Range Set oRange = Selection for each c in oRange c.Formula = Application.ConvertFormula(Formula:=c.Formula, _ fromreferencestyle:=Application.ReferenceStyle, toabsolute:=xlAbsolute) End Sub Regards David Grugeon On 17 May 2013 01:22, Chris

Re: $$Excel-Macros$$ Combine Data From Two Sheets into a Single Sheet

2013-05-15 Thread David Grugeon
Sorry - Attachment here Regards David Grugeon On 16 May 2013 13:12, David Grugeon wrote: > Easier with formulas - see attached. I had to change the ID for ABC from > FR002 to FR001 to match the details. Also I did not get the swapped items > in the last 2 rows shown in your

Re: $$Excel-Macros$$ Combine Data From Two Sheets into a Single Sheet

2013-05-15 Thread David Grugeon
Easier with formulas - see attached. I had to change the ID for ABC from FR002 to FR001 to match the details. Also I did not get the swapped items in the last 2 rows shown in your combined. Regards David Grugeon On 16 May 2013 12:38, Christopher Kevin wrote: > Dear Experts, > > C

Re: $$Excel-Macros$$ IF FORMULA NOT WORKING

2013-05-14 Thread David Grugeon
The formula refers to 34 in B5 but B5 is 36, not 34 Regards David Grugeon On 15 May 2013 16:41, P.VIJAYKUMAR wrote: > Respected Experts, > > My exact requirement is that if 12(or any constant number specific to > login) is typed in Cell B4 of the attachment it should displa

Re: $$Excel-Macros$$ Vlookup value with comments

2013-05-14 Thread David Grugeon
It is possible using VBA. Please supply a sample workbook so we can understand exactly how your data is organised and how you want to look it up. Regards David Grugeon On 15 May 2013 13:51, Prabhu Pinky wrote: > Nope. it is not possible.. > > > On 15 May 2013 01:14, santosh s

Re: $$Excel-Macros$$ Filter on Row to hide column

2013-05-10 Thread David Grugeon
You cannot filter horizontally. You could have a macro to hide all columns from column d onwards which were not Week1, if that is what you want. Regards David Grugeon On 10 May 2013 16:28, Amit Desai (MERU) wrote: > Dear Friends, > > ** ** > > Please help. > &g

Re: $$Excel-Macros$$ Macro for overlapping data

2013-05-09 Thread David Grugeon
>From the data available there is no way to determine how many users have 3 or more channels. Regards David Grugeon On 10 May 2013 15:34, Sri Jai wrote: > Thanks david for the response > I think i confused you uncessarilly..(Apologies)As attached in the > word docum

Re: $$Excel-Macros$$ Macro for overlapping data

2013-05-09 Thread David Grugeon
terms "CCG", "Channel", and "Impression" mean, it may be feasible for me or another member (ideally a statistician) to help you further. Regards David Grugeon On 10 May 2013 13:47, Sri Jai wrote: > Dear Experts, > > Need your help on the below >

Re: $$Excel-Macros$$ Excel VBA code to handle "choose file to upload " window in internet explorer

2013-05-09 Thread David Grugeon
ink.follow. Regards David Grugeon On 10 May 2013 06:42, Mathan wrote: > Sorry, please refer to this screenshot. Thanks > > > On Fri, May 10, 2013 at 2:11 AM, Mathan wrote: > >> Hi David, >> >> Please refer to the attached screenshot. I believe you would get my point

Re: $$Excel-Macros$$ Excel VBA code to handle "choose file to upload " window in internet explorer

2013-05-09 Thread David Grugeon
, I think. Or you could upload the file to Google Apps or Office 365 and then open that in a browser. Regards David Grugeon On 9 May 2013 16:31, Mathan wrote: > Hi David/Anil, > > We are trying to upload the excel file through excel vba. > > The files are from common shared fo

Re: $$Excel-Macros$$ Excel VBA code to handle "choose file to upload " window in internet explorer

2013-05-08 Thread David Grugeon
he file is located. We also need to know why VBA code is required, rather than simply a hyperlink. Regards David Grugeon On 9 May 2013 06:56, Mathan wrote: > Hi Experts, > > I'm trying to upload a file from shared folder (directory) to the internet > explorer. > > Need a

Re: $$Excel-Macros$$ Need City in Blanck Coloume.

2013-05-08 Thread David Grugeon
Priti, You are absolutely right. It is up to the person who raised the query to test sugestested solutions and respond. If it is not working to say in what respect it is not working, If it is working to acknowledge that. Regards David Grugeon On 8 May 2013 22:16, priti verma wrote: > D

Re: $$Excel-Macros$$ please give suggestion...

2013-05-02 Thread David Grugeon
You are more likely to get a response if you use a meaninful heading and include the details of your problem in the body of the post. Regards David Grugeon On 3 May 2013 03:33, SAJID MEMON wrote: > I have attached a file, please give me vba code of my problem which i have > explained

Re: $$Excel-Macros$$ Loop issue

2013-04-30 Thread David Grugeon
ows("102:" & k).Delete Shift:=xlUp Regards David Grugeon On 30 April 2013 13:56, excel learner wrote: > this particular line it is Just skipping Rows("102:" & k).Select > > and deletion line also not performed. > > > > > On Mon, Apr 29, 2

Re: $$Excel-Macros$$ Loop issue

2013-04-28 Thread David Grugeon
lection. What does it do? Are the rows still selected? If not, where is the active cell after this line is run? Regards David Grugeon On 28 April 2013 16:36, excel learner wrote: > hi David, > > I tried step by step execution but still it is executing fine without any > error

Re: $$Excel-Macros$$ Loop issue

2013-04-27 Thread David Grugeon
You have highlighted 5 lines Try stepping through the code and finding out which line does not work as required. Regards David Grugeon On 28 April 2013 16:25, wrote: > Hi Experts, > > i have come across an issue where in auto filter code is skipping over > without performing

Re: $$Excel-Macros$$ Copy/Paste Problem

2013-04-27 Thread David Grugeon
7;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?hl=en. > For more options, visit https://gro

$$Excel-Macros$$ Re: copy formula down

2013-04-25 Thread David H
Thank you for the tip. Moving to cell A3 works, except when my only data is in C3 & D3. My goal is to reset the worksheet without the users losing the formulas. On Wednesday, April 24, 2013 8:10:58 PM UTC-4, David H wrote: > > > > I am using an excel spreadsheet in conjuncti

$$Excel-Macros$$ copy formula down

2013-04-24 Thread David H
I am using an excel spreadsheet in conjunction with Loftware. which requires headers in cells A1 and B1. I have formulas in A2 and B2 calculating data from C2 and D2. I'll enter data in columns C & D and then copy the formula down in columns A and B. My problem is when I reset the worksh

Re: $$Excel-Macros$$ saving function to use in all workbooks

2013-03-29 Thread David Grugeon
;);>. > 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?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > >

Re: $$Excel-Macros$$ conditional formating to find amts to offset

2013-03-24 Thread David Grugeon
os%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?hl=en. > For more options, visit https://groups.g

Re: $$Excel-Macros$$ Print problem

2013-03-19 Thread David Grugeon
Sorry. Dont use that use this one Private Sub Workbook_BeforePrint(Cancel As Boolean) Cancel = True Application.EnableEvents = False Worksheets(5).PrintOut Application.EnableEvents = True End Sub Regards David Grugeon On 19 March 2013 22:08, David Grugeon wrote: > Put this in

Re: $$Excel-Macros$$ Print problem

2013-03-19 Thread David Grugeon
Put this in the ThisWorkbook module Private Sub Workbook_BeforePrint(Cancel As Boolean) Cancel = True Application.EnableEvents = False Worksheets(5).PrintOut End Sub Regards David Grugeon On 19 March 2013 21:50, Shrinivas Shevde wrote: > Dear All > I have a excel work book in which

Re: $$Excel-Macros$$ Multiple Criteria issue formula

2013-03-19 Thread David Grugeon
I cannot understand your question. you will have to be much more explicit. If you cannot explain in English, perhaps you know someone who can help you. Please put the explanation in the body of the email, not in a spreadsheet. Regards David Grugeon On 19 March 2013 21:40, amar takale wrote

Re: $$Excel-Macros$$ Time calculation help

2013-03-17 Thread David Grugeon
o 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.goog

Re: $$Excel-Macros$$ Re: Replace a character to equal sign - VBA

2013-03-15 Thread David Grugeon
The problem is that you are replacing a string with another string when you want to replace it with a formula So Try ActiveCell.formula =Replace(ActiveCell.Value,"#","=",1,,vbTextCompare) Regards David Grugeon On 16 March 2013 04:10, André D'Avila wrote: >

Re: $$Excel-Macros$$ Unlock Cells on Condations

2013-03-15 Thread David Grugeon
It works perfectly on my spreadsheet. I think you filled the dates using a formula. Change xlFormulas to xlValues. It would also be good to put Dim r as Range at the head of the macro. Regards David Grugeon On 15 March 2013 23:47, Prashant Pednekar wrote: > Dear Dave, and other frie

Re: $$Excel-Macros$$ Excel 13 macros

2013-03-14 Thread David Grugeon
trying to force you to use the cloud, they then think that the cloud is an unsafe place so disable macros by default. Regards David Grugeon On 15 March 2013 07:28, Wayne Field wrote: > I moved up to Excel 13 less than a month ago with functioning > spreadsheets. Last night Microsoft wip

Re: $$Excel-Macros$$ FW: Amount clean after closed file

2013-03-14 Thread David Grugeon
In the This Workbook module put the following Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Sheet1.TextBox1.Text = "" ThisWorkbook.Save End Sub Regards David Grugeon On 14 March 2013 19:37, Umesh Gupta wrote: > > > -- > From: u

Re: $$Excel-Macros$$ Auto-populate a single cell by merging common values from cells within a range.

2013-03-13 Thread David Grugeon
o 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.co

Re: $$Excel-Macros$$ Available Consultant HOT LIST PROJECT MANGER AND EMBEDDED DEVELOPER

2013-03-12 Thread David Grugeon
It is just a case of illiteracy. Sales recruiter evidently cannot read or he/she would see that the rules include: 5) Jobs posting is not allowed. Regards David Grugeon On 13 March 2013 14:20, अनिल नारायण गवली wrote: > Dear SalesRecruiter, > > What we do

Re: $$Excel-Macros$$ how to call proc on sheet refering sheetname

2013-03-11 Thread David Grugeon
This works Application.OnTime Now() + TimeValue("00:00:05"), Sheets("Test").CodeName & ".CommandButton1_Click" Regards David Grugeon On 11 March 2013 21:52, Santosh V wrote: > Waiting for reply.. > > > On Mon, Mar 11, 2013 at 2:07 PM, San

Re: $$Excel-Macros$$ how to call proc on sheet refering sheetname

2013-03-11 Thread David Grugeon
the name of the file in the brackets you double up the quotes so two double quotes. VBA will treat them as a single double quote when it interprets the string. I haven't tested this but I think it is about right. Regards David Grugeon On 11 March 2013 04:26, Santosh V wrote: > Private Su

Re: $$Excel-Macros$$ Row and column Highlighted

2013-03-11 Thread David Grugeon
p may have plenty of time to spare and be willing to donate that time. Regards David Grugeon. Regards David Grugeon On 11 March 2013 16:33, karthikeyan sankaran wrote: > Hi, > > Thanks for your reply. > I need Active cell Row&Column. Whenever open the workbook it will show &

Re: $$Excel-Macros$$ PDF to Excel

2013-03-08 Thread David Grugeon
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.goo

$$Excel-Macros$$ Scope of variables

2013-03-07 Thread David Grugeon
m the help file, or is it just wrong? 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. P

Re: $$Excel-Macros$$ Re: Not able to change background color

2013-03-07 Thread David Grugeon
**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<http://groups.google.c

Re: $$Excel-Macros$$ MIS Job in Ienegizar

2013-03-04 Thread David Grugeon
Why did you post this? Rule 5) Jobs posting is not allowed. You have done this before. Please do not do it ever again. Regards David Grugeon On 5 March 2013 12:15, pankaj sangotra wrote: > Job Description > * Should have good knowledge of Work force management * Prepare

Re: $$Excel-Macros$$ Excel VBA to retrieve from MSAccess or Sharepoint

2013-03-04 Thread David Grugeon
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 t

Re: $$Excel-Macros$$ Excel VBA to loop through rows and delete blank lines

2013-03-04 Thread David McLaughlin
Wow That is neat. Thanks I need to try and remmember that. On Thursday, July 26, 2012 12:56:39 AM UTC-4, अनिल नारायण गवली wrote: > Dear Tony, > > U can use without macro > Just select the range and press ctl+G of press F5 function key . > Then click to blank cell and use Alt+E+D select the

Re: $$Excel-Macros$$ Multiple Column& Rows conditions Sum

2013-02-28 Thread David Grugeon
=SUMIF(A2:A7,F9,OFFSET(A2:A7,0,CODE(F8)-64)) Regards David Grugeon On 1 March 2013 11:50, Venkat CV wrote: > Hello Everyone, > > I have enclosed sample file were i required formula assistance If I > select 2 Criteria's and needs to sum up based on ROW&Column criteria&#x

Re: $$Excel-Macros$$ Data Validation issue

2013-02-28 Thread David Grugeon
This thread makes me think you are typing in the names of your named ranges. It is bettter to press F3 and double click the name to add it. Makes sure there are no typos in the name. Regards David Grugeon On 28 February 2013 18:03, Bé Trần Văn wrote: > Go to Insert> Name> Defin

Re: $$Excel-Macros$$ Need formula for sum

2013-02-27 Thread David Grugeon
xcel-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?hl=en. > For more options, visit https

Re: $$Excel-Macros$$ F-key to open a particular worksheet

2013-02-26 Thread David Grugeon
open sub has not run. Regards David Grugeon On 27 February 2013 16:49, amar takale wrote: > Dear All, > Can anyone tell me how I can allocate an F-key to open a particular > worksheet.I will try but not successful. Pls see below link,same issue. > > > https://group

Re: $$Excel-Macros$$ Sum with maximum

2013-02-23 Thread David Grugeon
=sumif(C2:C50,"<6500",C2:C50)+countif(C2:C50,">=6500)*6500 Regards David Grugeon On 23 February 2013 20:36, Ranjeet Negi wrote: > Dear Sir, > > I have a data in Range (C2:C50). There are values. I want to sum all > value upto or equal to 6500, wherein

Re: $$Excel-Macros$$ Assignment

2013-02-22 Thread David Grugeon
Assuming the first value is in A2 In B2 put =left(A2,1) In C2 put =mid(A2,2,4) Drag these formulas down. Regards David Grugeon On 23 February 2013 16:14, Harkesh Kumar wrote: > > > > Please solve this Problem > > > > Please Seperate Special character and number &

Re: $$Excel-Macros$$ Date hour value problem!

2013-02-22 Thread David Grugeon
number. 0.1770833 or thereabouts. When we apply a time format h:mm to this it displays as 4:15. QED Regards David Grugeon On 22 February 2013 21:30, David Grugeon wrote: > try this > > If the value is in B3 use then formula > > =(int(B3)+mod(B3,1)/.6)/24 > then format as h:mm &

Re: $$Excel-Macros$$ Date hour value problem!

2013-02-22 Thread David Grugeon
try this If the value is in B3 use then formula =(int(B3)+mod(B3,1)/.6)/24 then format as h:mm Regards David Grugeon On 22 February 2013 20:36, The Viper wrote: > excel will not hold a value as 2.30 with full decimal(2). We > can derive the desired result by formula if you intend. &

Re: $$Excel-Macros$$ Index and Match help needed

2013-02-20 Thread David Grugeon
u want it to apply to) PasteSpecial/Formats It should be easier but I could not get it to work to just apply conditional formatting to the range. Regards David Grugeon On 21 February 2013 01:50, solsbee wrote: > I have a spreadsheet that the data is keyed in one cell, then multiple >

Re: $$Excel-Macros$$ Count No of Days between Start and End Date over a period of different years

2013-02-19 Thread David Grugeon
Hi Paul - OOPS! I didnt see you had finished it. Sorry. Regards David Grugeon On 20 February 2013 07:08, David Grugeon wrote: > Hi Paul > > What i think the OP wants is > > If a person started in the year he wants the end date of the year (31 > December) minus Start

Re: $$Excel-Macros$$ Count No of Days between Start and End Date over a period of different years

2013-02-19 Thread David Grugeon
the year and ended after the year he wants 365 or 366 in that year column. Regards David Grugeon On 19 February 2013 22:42, Paul Schreiner wrote: > I'm really very sorry, but your explanation continues to make no sense. > Basically, it's this: > You want the number of day

Re: $$Excel-Macros$$ Calculation of Import Value

2013-02-19 Thread David Grugeon
tax = value*1.392+value*1.392*0.06 =value *1.392*1.06 =value*1.47552 so the Custom duty, plus the Sales tax plus the income tax is Value*0.47552 This is the formula you need in the single cell if the value is in A3 *=A3*0.47552* Regards David Grugeon On 19 February 2013 17:48

Re: $$Excel-Macros$$ how to get cumulative sum in a cell

2013-02-19 Thread David Grugeon
Hi Anton How are you calling the sub? Regards David Grugeon On 20 February 2013 04:40, Anton Jopko wrote: > Hi David, > I tried your suggestion but still no luck. I may have to get a VBA book > that is simpler than the one i have. > Thanks for looking at my macro though, > an

  1   2   3   4   >