Re: $$Excel-Macros$$ Show full screen for a particular workbook only.

2011-04-20 Thread ChilExcel
You need add ins ? 2011/4/20 rajan verma > make it add-ins > > > On Fri, Apr 15, 2011 at 5:16 PM, Rajesh K R wrote: > >> Hi Experts, >> >> I gave the following code to get the full screen view, if it is only >> applicable to that particular workbook how can i change it. >> >> >> Private Sub W

Re: $$Excel-Macros$$ pls help

2011-04-20 Thread Vikas Chouhan
Hey, Find the below mention link and read it. Advance Filter Intro. On Wed, Apr 20, 2011 at 4:35 PM, rohit gupta wrote: > hiii, > > kindly let me know what are the benifits of ADVANCE FILER

Re: $$Excel-Macros$$ pls help

2011-04-20 Thread ashish koul
try this link http://www.contextures.com/xladvfilter01.html On Wed, Apr 20, 2011 at 4:35 PM, rohit gupta wrote: > hiii, > > kindly let me know what are the benifits of ADVANCE FILER in Excel 2003. > > wating for reply... > > Thanks in advance... > > Regards, > > -- > > -

Re: $$Excel-Macros$$ STDEV

2011-04-20 Thread STDEV(i)
http://www.techonthenet.com/excel/formulas/stdev.php http://www.excelfunctions.net/Excel-Stdev-Function.html http://support.microsoft.com/kb/826349 and F1 function button on you keyboar

$$Excel-Macros$$ Excel spell out word from number

2011-04-20 Thread Tony O
I have an Excel spreadsheet with a column of numbers. I would like each number to be spelled out, for example B1=4 C1=four B2=99 C2=ninety-nine. How would I go about this with a macro? -- -- Some important links f

Re: $$Excel-Macros$$ Need macro code help regaring the pop up .

2011-04-20 Thread ashish koul
add application.displayalert = false at the beginning of code application.displayalert = true before end sub statement On Wed, Apr 20, 2011 at 4:02 PM, Bhushan Sabbani wrote: > Dear All, > > I have record a macro there i have delete the sheet. > The code are as below > > Sheets("MNS Summary")

$$Excel-Macros$$ pls help

2011-04-20 Thread rohit gupta
hiii, kindly let me know what are the benifits of ADVANCE FILER in Excel 2003. wating for reply... Thanks in advance... Regards, -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tri

Re: $$Excel-Macros$$ Need Help

2011-04-20 Thread rajan verma
=IF((C3-B3)>0.01,C3,"") paste it in Output On Wed, Apr 20, 2011 at 1:04 PM, Rohan Young wrote: > Dear gurus, > > please sought out my problem as attached where i m confusing or what is the > solution > > thanks in advance > > ROHAN > 9818247278 > > -- > >

$$Excel-Macros$$ STDEV

2011-04-20 Thread sudhir kumar
hi what is STDEV? please explain -- <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> Sudhir Verma Asstt. Mngr. A/c's 9818479722 * P think Before you print * * ** Life is Very beautiful !!! * * ¨`•.•´¨) Always `•.¸(¨`•.•´¨) Keep (¨`•.•´¨)¸.•´ Smiling

Re: $$Excel-Macros$$ Need Help

2011-04-20 Thread Rohan Young
Dear Daniel, i need here Actual wt., the difference output is negative but the condition is <=0.1. what i need? does'nt matter output figure is negative but condition is <=0.1 is fixed* (if difference is >0.1, i only need Invoice wt. in the rest condition i need Actual wt. after the fixed condi

Re: $$Excel-Macros$$ Need Help

2011-04-20 Thread Rohan Young
Dear Daniel, i need here Actual wt., the difference output is negative but the condition is <=0.1. what i need? does'nt matter output figure is negative but condition is <=0.1 is fixed* (if difference is >0.1, i only need Invoice wt. in the rest condition i need Actual wt. after the fixed condi

$$Excel-Macros$$ Need macro code help regaring the pop up .

2011-04-20 Thread Bhushan Sabbani
Dear All, I have record a macro there i have delete the sheet. The code are as below Sheets("MNS Summary").Activate Sheets("MNS Summary").Delete but i am getting the pop up that data may exist . the option is delete and cancel. I have click on delete option again and again to sele

R: Re: $$Excel-Macros$$ How to Separate Text and Nos in a sentence ?

2011-04-20 Thread r
as an alternative to solving of siti Vi Function GetNumbers_r(S As String, Index As Integer) Dim mc Dim RE As Object Set RE = CreateObject("vbscript.regexp") RE.Global = True RE.Pattern = "(?:0|[+-]?" & _ "(?:(?!0)\d+(?:\.\d+)?" & _ "|[0]+(?:\.\d+)?))" S = Replace(S, ",",

RE: $$Excel-Macros$$ Need Help

2011-04-20 Thread Daniel
Hello, Can you explain G6 ? Difference is -0.190 which is <=0.1. Regards. Daniel De : excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] De la part de Rohan Young Envoyé : mercredi 20 avril 2011 09:35 À : excel-macros@googlegroups.com Objet : $$Excel-Macros$$ Need Help

$$Excel-Macros$$ Need Help

2011-04-20 Thread Rohan Young
Dear gurus, please sought out my problem as attached where i m confusing or what is the solution thanks in advance ROHAN 9818247278 -- -- Some important links for excel users: 1. Follow us on TWITTER for tips trick

Re: $$Excel-Macros$$ How to update record in excel.

2011-04-20 Thread mrinal saha
try this and paste it in code editor of the workbook you want to get refreshed automatically. Private Sub Workbook_Activate() Application.Calculation = xlCalculationAutomatic End Sub On Wed, Apr 20, 2011 at 6:30 AM, JPK wrote: > Hi, > > How to update the particular row in an excel when some

Re: $$Excel-Macros$$ Show full screen for a particular workbook only.

2011-04-20 Thread rajan verma
make it add-ins On Fri, Apr 15, 2011 at 5:16 PM, Rajesh K R wrote: > Hi Experts, > > I gave the following code to get the full screen view, if it is only > applicable to that particular workbook how can i change it. > > > Private Sub Workbook_Open() > Application.DisplayFullScreen = True > End Su

Re: $$Excel-Macros$$ How to update record in excel.

2011-04-20 Thread rajan verma
You can choose option "Always Create Backup " Available in Excel Save Dialog Box Under Tools Dropdown List at the time of Save. after it when you will save your file after any changes in then it will also save in Backup file.. On Wed, Apr 20, 2011 at 6:30 AM, JPK wrote: > Hi, > > How to update

Re: $$Excel-Macros$$ How to Separate Text and Nos in a sentence ?

2011-04-20 Thread rajan verma
On Tue, Apr 19, 2011 at 9:37 PM, ashish koul wrote: > see if it helps > > > On Tue, Apr 19, 2011 at 7:14 PM, karan kanuga wrote: > >> Hi, >> >> Can any1 pls let me know how do i separate the text and nos in a >> given sentence. PFA the sheet where i need to separate the nos and text. >> >> Thanks