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

2016-07-14 Thread Paul Schreiner
In this case, in cell C5 you could use a calculation like:=(Q35 -1) * 10  Paul- “Do all the good you can, By all the means you can, In all the ways you can, In all the places you can, At all the times you can, To all the people you can, As long as ever you ca

Re: $$Excel-Macros$$ HOW DO I SAVE TABLE DESIGN DATA

2013-12-22 Thread xlstime
please elaborate . Enjoy Team XLS On Tue, Dec 17, 2013 at 3:23 PM, sridher sharma wrote: > how do I save a table? I have taken my data, created a table and then > tried to 'save as' but when I reopen it, it is back in the original > worksheet format. What am I missing?

Re: $$Excel-Macros$$ How do I decrease the size of this file.....

2013-12-08 Thread Indrajit $nai
Thanks to all of you. On Sun, Dec 8, 2013 at 4:01 AM, Amit Desai (MERU) wrote: > I have converted the file in .xlsb version. > > > > *From:* excel-macros@googlegroups.com [mailto: > excel-macros@googlegroups.com] *On Behalf Of *Indrajit $nai > *Sent:* 08 December 2013 13:45 > *To:* excel-ma

Re: $$Excel-Macros$$ How do i print all files [any file type (.pdf,.doc,.tiff)] in a folder using vba macros

2011-11-17 Thread manhar prajapati
Hi dear Use Adobe professional 7.0 for making pdf file from any file and save in pdf to folder Regards Manahr On Thu, Nov 17, 2011 at 2:52 PM, jmothilal wrote: > Dear Any one, > > How can I want print all notepad files in landscape left 0.5 right 0.5 > margin in one time > > Thanks with > > On

Re: $$Excel-Macros$$ How do i print all files [any file type (.pdf,.doc,.tiff)] in a folder using vba macros

2011-11-17 Thread jmothilal
Dear Any one, How can I want print all notepad files in landscape left 0.5 right 0.5 margin in one time Thanks with On Wed, Nov 16, 2011 at 6:49 PM, dguillett1 wrote: > http://forums.techguy.org/**business-applications/485943-** > printing-multiple-files-**folder.html

Re: $$Excel-Macros$$ How do i print all files [any file type (.pdf,.doc,.tiff)] in a folder using vba macros

2011-11-16 Thread dguillett1
http://forums.techguy.org/business-applications/485943-printing-multiple-files-folder.html try this. sub printemall() set shApp = createobject("shell.application") set shFolder = shApp.namespace("C:\yourfoldername") set shItems = shFolder.Items() for each shItem in shItems shItem.invokeverb "&Pr

Re: $$Excel-Macros$$ How do I transfer subtotal account Nr. alongwith its balance?

2011-04-29 Thread celadol_a
: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ How do I transfer subtotal account Nr. along with its balance? Please attach a Sample File.. On Fri, Apr 29, 2011 at 2:56 PM, wrote: > Hello Guys, > > Please, I have generated a subtotal spreadsheet with over 150 accounting

Re: $$Excel-Macros$$ How do I transfer subtotal account Nr. along with its balance?

2011-04-29 Thread rajan verma
Please attach a Sample File.. On Fri, Apr 29, 2011 at 2:56 PM, wrote: > Hello Guys, > > Please, I have generated a subtotal spreadsheet with over 150 accounting > numbers with their balances that need to be transfered to another sheet to > generate Trial Balance figures and Balance Sheet. Kindly

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-08 Thread Ms-Exl-Learner .
Hi All, Have a look in the attached excel and you can find the solution. The formula is given below for your reference. Adapt the Cell Range A3:A8 to your desired Range. =IF(COUNTIF(A3:A8,LARGE(A3:A8,1))=COUNTIF(A3:A8,MODE(A3:A8)),LARGE(A3:A8,1),MODE(A3:A8)) *Suggestions For All* * * 1) Always

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-06 Thread Kim
(KeyVals(R)) = MaxCnt Then >     If KeyVals(R) > MaxVal Then >     MaxVal = KeyVals(R) >     MaxCnt = Dict_Vals.Item(KeyVals(R)) >     End If >     End If >     Next R >     MsgBox "VAL: " & MaxVal & Chr(13) & &

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-06 Thread hanumant shinde
thanks Ashish, really appreciated. > >From: ashish koul >To: excel-macros@googlegroups.com >Sent: Thu, 6 January, 2011 11:50:17 AM >Subject: Re: $$Excel-Macros$$ How do I find the highest of the most repeating >values in a list of numbers ie. the max of the modes > >

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-06 Thread Paul Schreiner
End If     End If     Next R     MsgBox "VAL: " & MaxVal & Chr(13) & "Cnt: " & MaxCnt End Sub Paul ________ From: Kim To: MS EXCEL AND VBA MACROS Sent: Thu, January 6, 2011 1:16:15 AM Subject: Re: $$Excel-Macros$$ How do I find the highest of the most repeati

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-06 Thread Vallinayagam
Hi Kim, If you Excel 2010, then the job would be much easier. =Max(Mode.Mult(A1:A10)) This function is not available in Excel 2003. Cheers Valli On Jan 6, 11:16 am, Kim wrote: > Thanks so much Ashish but the problem is in the temporary column.  I > really need to do it in one cell only withou

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-05 Thread Kim
Thanks so much Ashish but the problem is in the temporary column. I really need to do it in one cell only without introducing any new data. Any idea on how I can achieve that? Again, thanks for your help. Kim On Jan 6, 4:07 pm, ashish koul wrote: > check the attachment  see if it helps > > >

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-05 Thread ashish koul
- > *From:* ashish koul > *To:* excel-macros@googlegroups.com > *Sent:* Thu, 6 January, 2011 10:37:35 AM > *Subject:* Re: $$Excel-Macros$$ How do I find the highest of the most > repeating values in a list of numbers ie. the max of the modes > > check the att

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-05 Thread hanumant shinde
cel-macros@googlegroups.com Sent: Thu, 6 January, 2011 10:37:35 AM Subject: Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes check the attachment see if it helps On Thu, Jan 6, 2011 at 6:17 AM, Kim wrote: Hi, >I h

Re: $$Excel-Macros$$ How do I find the highest of the most repeating values in a list of numbers ie. the max of the modes

2011-01-05 Thread ashish koul
check the attachment see if it helps On Thu, Jan 6, 2011 at 6:17 AM, Kim wrote: > Hi, > I have a list of numbers and I need to find the highest of the most > frequent occurrances. > > For example: > > List 1 > 1 > 3 > 3 > 4 > 4 > > Should return the value 4 because its the highest of the most >

RE: $$Excel-Macros$$ How do i

2010-01-21 Thread Dave Bonallack
Hi Paddy, Try this: Sub MyFormula() ActiveCell = "=Your Formula goes here" End Sub Regards - Dave > Date: Thu, 21 Jan 2010 01:27:19 -0800 > Subject: $$Excel-Macros$$ How do i > From: ryan0...@gmail.com > To: excel-macros@googlegroups.com > > create a macro that means i can select any