Re: $$Excel-Macros$$ Sort VBA Code Modified

2014-07-01 Thread Lalit Mohan Pandey
Share your workbook in which you are applying this method and let me check why it is not working. On Tuesday, 1 July 2014 11:05:27 UTC+5:30, amar takale wrote: Dear lalitji code not working On Tue, Jul 1, 2014 at 8:00 AM, Lalit Mohan Pandey mohan.p...@gmail.com javascript: wrote: I

Re: $$Excel-Macros$$ Sort VBA Code Modified

2014-06-27 Thread Lalit Mohan Pandey
change your code as i have changed it: *Sub SECEPSDES()* *With ActiveWorkbook.Worksheets(Sector Valn)* *.Sort.SortFields.Clear* *.Range(A6:U21).Sort Key1:=.Range(E7:E21), Order1:=xlDescending, Header:=xlYes* *End With* *End Sub* *Sub SECEPSASC()* *With

$$Excel-Macros$$ Re: URGENT Help! How to display Period the data has been selected through the timeline.

2014-06-27 Thread Lalit Mohan Pandey
What you want whenever you scroll down the timline should also scroll down? On Friday, 27 June 2014 14:59:45 UTC+5:30, Prayank Vidyarthi wrote: Hi Excel Gurus, I need your help as I am really stuck over here. I have data starting from Nov 2012 till March 2014. I have created various charts

Re: $$Excel-Macros$$ Sort VBA Code Challenging difficult work

2014-06-27 Thread Lalit Mohan Pandey
Try this, I have created this for only MCap column: *Option Explicit* *Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)* *If Target.Address = $D$7 Then* *Call FilterData* *Application.Goto Me.Cells(1, 1)* *End If* *End Sub* *Sub

Re: $$Excel-Macros$$ Sort VBA Code Modified

2014-06-27 Thread Lalit Mohan Pandey
Yes it will work in excel 2003 and above On Friday, 27 June 2014 15:31:54 UTC+5:30, amar takale wrote: Dear Lalit Mohan Then it code not work in excel 2003? On Fri, Jun 27, 2014 at 3:24 PM, Lalit Mohan Pandey mohan.p...@gmail.com javascript: wrote: change your code as i have changed

$$Excel-Macros$$ Re: Fw: Query on Text to Columns function

2013-08-29 Thread Lalit Mohan Pandey
Try this Option Explicit Sub SplitValues() Dim lngLoop As Long Dim vararrRawData() As Variant Dim vararrSplitData As Variant 'Const variable change accordingly as per your requirement Const strDataRangeToSplit As String = C1:C65536 Const

$$Excel-Macros$$ Re: Export 2 coloums data from 1 to 30 sheet to one new excel or in a different new sheet

2013-08-29 Thread Lalit Mohan Pandey
If it possible please attach sample data so that we can help you On Thursday, 29 August 2013 14:38:39 UTC+5:30, Dhamo dharan wrote: Dear Friends Kindly help to export data like name and percentage from all the sheet (30 sheets) to a new file or in a different sheet. E.g Name project

$$Excel-Macros$$ Re: VBA getting data from web site

2013-08-28 Thread Lalit Mohan Pandey
Yes you can download data but only thing you need to do is to arrange data in excel file by using excel vba. :) On Wednesday, 28 August 2013 18:59:19 UTC+5:30, Mithun Dhar wrote: I am trying to import data from IE sharepoint web site. The sharepoint website just contains one table with

Re: $$Excel-Macros$$ I need to delete entire rows which contain exact matches from a static list on a seperate sheet

2013-08-28 Thread Lalit Mohan Pandey
Please check hope this is what you are looking for: Option Explicit Sub RemoveData() Dim wbkFile As Workbook Dim vararrDataToRemove()As Variant Dim lngLoop As Long Dim rngData As

$$Excel-Macros$$ Re: Idle timer that saves, closes and logs off user after 5 min

2013-08-13 Thread Lalit Mohan Pandey
You can try below link: http://www.vbaexpress.com/kb/getarticle.php?kb_id=515 On Wednesday, 14 August 2013 03:36:42 UTC+5:30, Tom B. wrote: Hi I have a spreadsheet that records user inputs and then stores the inputs along with Date/Time and user ID. Since this will be accessed on

$$Excel-Macros$$ Re: Run time error 6

2013-08-13 Thread Lalit Mohan Pandey
Instead of sharing Screen shot it would be nice if you can share file On Tuesday, 13 August 2013 20:01:06 UTC+5:30, Chandru wrote: Hi, While running macro am getting run time error 6 as shown in the attached file. I am using huge data which contains 9 rows. Could you please let me

Re: $$Excel-Macros$$ Macro that will leave data and new data from query when ran

2013-08-12 Thread Lalit Mohan Pandey
/13, Lalit Mohan Pandey mohan.p...@gmail.com javascript: wrote: Replace line *Erow = Me.Range(A1).End(xlDown).row + 1* with this one *If LenB(Trim(Me.Cells(13, 2).Value)) = 0 Then Me.Cells(13, 2).Value = DATES* *Erow = Me.Cells(Me.Rows.Count, 2).End(xlUp).Offset(1).row

Re: $$Excel-Macros$$ Macro that will leave data and new data from query when ran

2013-08-09 Thread Lalit Mohan Pandey
Replace line *Erow = Me.Range(A1).End(xlDown).row + 1* with this one *If LenB(Trim(Me.Cells(13, 2).Value)) = 0 Then Me.Cells(13, 2).Value = DATES* *Erow = Me.Cells(Me.Rows.Count, 2).End(xlUp).Offset(1).row* If it will not work then you need to share your database as well so that we can run

$$Excel-Macros$$ Re: Preventing opening a macro enabled excel file to be opened in OpenOffice or Similar opensource products

2013-07-31 Thread Lalit Mohan Pandey
I am not sure about this becuse Microsoft excel vba doesn't work in Openoffice and if you really want to prevent your code then go for COM addin Using VSTO. On Wednesday, 31 July 2013 23:58:25 UTC+5:30, Aashish Watve wrote: Dear All, I have a very particular question. Is there a way to

$$Excel-Macros$$ Re: Need a Fastest way

2013-06-19 Thread Lalit Mohan Pandey
How you highlighted cells in a range? On Wednesday, 19 June 2013 17:58:39 UTC+5:30, Rajan_Verma wrote: can anyone suggest a faster way to know which cells are highlighted in a Range ? suppose i have data of 1 lac cell and i have some cells highlighted , i want to know address of that

$$Excel-Macros$$ Re: List in Userform

2013-06-11 Thread Lalit Mohan Pandey
Why don't you use listview form control. On Friday, 7 June 2013 18:38:48 UTC+5:30, Chandru wrote: Hi, How to get List as attached in the userform Regards, Chandra -- 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

$$Excel-Macros$$ Re: Functions returning an integer

2013-04-29 Thread Lalit Mohan Pandey
Share your file. On Monday, 29 April 2013 14:30:13 UTC+5:30, colmkav wrote: Hi, I am trying to execute this function to return the column number of a heading. However although the value is correctly 3 when it reaches the end of the function it becomes 0 when I set it to iFund2Col after

Re: FW: $$Excel-Macros$$ Re: Need expert advise for multipal Selection

2013-04-18 Thread Lalit Mohan Pandey
-Twitter-Logo] https://twitter.com/dhaval4205 *Please consider the enviroment before priting this email * On Wed, Apr 3, 2013 at 12:25 PM, Lalit Mohan Pandey mohan.p...@gmail.comjavascript: wrote: Hi Dhaval, Copy below formula at cell address C11 and confirm it with CSE

$$Excel-Macros$$ Re: Move formula to another sheet

2013-04-17 Thread Lalit Mohan Pandey
Change your formula with this one * =IF(ISERROR(SMALL(IF(Sheet1!C$1:C$145=Sheet1!M$3,ROW(Sheet1!A$1:A$145),),ROW()-(ROW()-1))),,INDEX(Sheet1!D$1:D$145,SMALL(IF(Sheet1!C$1:C$145=Sheet1!M$3,ROW(Sheet1!A$1:A$145),),ROW()-(ROW()-1 * On Wednesday, 17 April 2013 18:45:10 UTC+5:30, amar takale

Re: $$Excel-Macros$$ Click Option for Multiple Criteria

2013-04-16 Thread Lalit Mohan Pandey
Follow steps and try this. Hope this will work for you: 1. *Right Click on Cell C5* 2. *Create a hyperlink with cell refrence C5 in the same (output sheet )* 3. *Do same for Cell D5 and create hyperlink with cell refrence D5 in the same (output sheet )* 4. *Right click on output

Re: $$Excel-Macros$$ Document number to become automatically

2013-04-15 Thread Lalit Mohan Pandey
Do you want the Doc. No. after you fill column a and c or what and what should be the doc no how we decide. On Monday, 15 April 2013 11:09:35 UTC+5:30, Pravin Gunjal wrote: *Hi, I want the result : Doc. No. to be come when the stockist and location is getting typed in column C A accordingly

$$Excel-Macros$$ Re: cell formula

2013-04-15 Thread Lalit Mohan Pandey
Change this line activecell.FormulaR1C1 = =D6 YEAR(MonthEndDate) . rg.value . \Outputs\ with activecell.Formula = =D6 YEAR(MonthEndDate) . rg.value . \Outputs\ On Monday, 15 April 2013 13:28:30 UTC+5:30, colmkav wrote: Hi, I am trying to set the formula of a cell to be the

Re: $$Excel-Macros$$ print all URL details in a PDF file

2013-04-15 Thread Lalit Mohan Pandey
Please give me some time i am working on this and this can be done. so don't worry man. I will come up with a solution by eod. On Monday, 15 April 2013 12:58:16 UTC+5:30, lakshm...@yahoo.com wrote: still waiting *Lakshman Prasad* Sr. Manager (Finance) GAURSONS INDIA LIMITED Ph: +91

Re: $$Excel-Macros$$ Number to words

2013-04-15 Thread Lalit Mohan Pandey
You can also try this http://www.excelfox.com/forum/f12/number-into-words-rupees-45/ On Monday, 15 April 2013 14:08:29 UTC+5:30, Kuldeep Singh wrote: Hi Abhishek, PFA by Noorain Sir. Regards, Kuldeep Singh Info Edge India Limited (naukri.com) Phone.: +91-0120-4841100, Extn.: 2467,

$$Excel-Macros$$ Re: Identify occurances unique to after a date and not before

2013-04-11 Thread Lalit Mohan Pandey
I think the output would containd three values Cards, Ballons, Streamers and for this output below is the formula. Confirm it with CSE * =IFERROR(INDEX($A$1:$A$8,SMALL(IF(((VALUE($B$2:$B$8)=VALUE($D$1))*ROW($A$2:$A$8))=0,,((VALUE($B$2:$B$8)=VALUE($D$1))*ROW($A$2:$A$8))),ROW($A$1:$A$8))),) * On

$$Excel-Macros$$ Re: how to search for max value in alpha neumeric range or col.

2013-04-10 Thread Lalit Mohan Pandey
Is there any pattern of ID's like starting 3 characters are string and the rest part is Numeric or something like this. Please explain. On Thursday, 11 April 2013 03:51:42 UTC+5:30, shau...@gmail.com wrote: I have a sheet with lot IDs in Col A AAA100 CPP100 AAA101 AAA102 CPP101 and so

Re: $$Excel-Macros$$ Re: Remove Duplicate with Criteria

2013-04-04 Thread Lalit Mohan Pandey
On Thu, Apr 4, 2013 at 10:06 AM, Lalit Mohan Pandey mohan.p...@gmail.comjavascript: wrote: What is the criteria to not delete duplicates. On Thursday, 4 April 2013 09:34:49 UTC+5:30, chaya moni wrote: Dear Lalit Sir, Thanks for the reply. i tried to explain a bit more

$$Excel-Macros$$ Re: Unhide Sheets

2013-04-04 Thread Lalit Mohan Pandey
Try this code. Hope it will help you *Sub Test_Lalit_Pandey()* * * *Dim wksSht As Worksheet* ** *For Each wksSht In ThisWorkbook.Worksheets* *If wksSht.Visible = xlSheetHidden Or wksSht.Visible = xlSheetVeryHidden Then* *wksSht.Visible = xlSheetVisible* *

Re: $$Excel-Macros$$ Re: Need expert advise for multipal Selection

2013-04-03 Thread Lalit Mohan Pandey
Hi Dhaval, Copy below formula at cell address C11 and confirm it with CSE *=MAX(($B$2:$B$68=$S$10)*($A$2:$A$68 = FUTSTK)*$I$2:$I$68)* * * Select cell R14:R19, press F2 and paste below formuls and confirm it with CSE *=IFERROR(INDEX($B$1:$N$68,IFERROR(SMALL(IFERROR(INT(SUBSTITUTE(($D$1:$D$68

Re: $$Excel-Macros$$ Re: Need expert advise for multipal Selection

2013-04-03 Thread Lalit Mohan Pandey
Dhaval Shah 079 - 40055253 On Wed, Apr 3, 2013 at 12:25 PM, Lalit Mohan Pandey mohan.p...@gmail.comjavascript: wrote: Hi Dhaval, Copy below formula at cell address C11 and confirm it with CSE *=MAX(($B$2:$B$68=$S$10)*($A$2:$A$68 = FUTSTK)*$I$2:$I$68)* * * Select cell R14:R19, press F2

Re: $$Excel-Macros$$ Re: Need expert advise for multipal Selection

2013-04-03 Thread Lalit Mohan Pandey
at 12:42 PM, Lalit Mohan Pandey mohan.p...@gmail.comjavascript: wrote: They all are array forumlas did you applied with Control + Shift + Enter. Please check. I applied all these formulas in your attached workbook and its working. On Wednesday, 3 April 2013 12:39:39 UTC+5:30, Dhaval

$$Excel-Macros$$ Re: Remove Duplicate with Criteria

2013-04-03 Thread Lalit Mohan Pandey
I am not able to understand your both conditions :(. First select all column then remove duplicate. (Only 29 duplicate value found and removed.) On Wednesday, 3 April 2013 18:37:15 UTC+5:30, chaya moni wrote: Dear Experts, I have another problem arise in excel while removing duplicate.

Re: $$Excel-Macros$$ Re: Remove Duplicate with Criteria

2013-04-03 Thread Lalit Mohan Pandey
What is the criteria to not delete duplicates. On Thursday, 4 April 2013 09:34:49 UTC+5:30, chaya moni wrote: Dear Lalit Sir, Thanks for the reply. i tried to explain a bit more in the attached file. please refer sir. Regards, Chaya On Thu, Apr 4, 2013 at 8:58 AM, Lalit Mohan

$$Excel-Macros$$ Re: Arrangement head of the table in the macro code

2013-04-02 Thread Lalit Mohan Pandey
Use it like this: For Each Wks In ThisWorkbook.Worksheets If IsNumeric(Wks.Name) Then Wks.Name = Year Wks.Name end if If Wks.Name = 2010 And Wks.Name = Year(Date) Then end if next wks On Tuesday, 2 April 2013 20:01:41 UTC+5:30, artforart artforart wrote: If I add this bold part in code I've

$$Excel-Macros$$ Re: array formula

2013-04-02 Thread Lalit Mohan Pandey
Just write your formula and comfirm it with CSE. Or you can go through below link: http://www.cpearson.com/excel/ArrayFormulas.aspx http://office.microsoft.com/en-in/excel-help/introducing-array-formulas-in-excel-HA001087290.aspx

$$Excel-Macros$$ Re: Macro-with example file

2013-04-02 Thread Lalit Mohan Pandey
You can go through below links: http://www.excel-vba-easy.com/ http://www.excel-vba.com/ On Wednesday, 3 April 2013 09:56:27 UTC+5:30, prafull jadhav wrote: Dear All, Very Good Morning , I am very familiar with excel ..but I have never use Macro in my work . I want to learn Macro ..I am

$$Excel-Macros$$ Re: Need expert advise for multipal Selection

2013-04-01 Thread Lalit Mohan Pandey
Colud you please elaborate. On Tuesday, 2 April 2013 09:56:37 UTC+5:30, Dhaval Shah wrote: Hello all experts any solution for my query On Mon, Apr 1, 2013 at 4:37 PM, Dhaval Shah todhav...@gmail.comjavascript: wrote: Dear Experts I want to make out multipul selection for my

$$Excel-Macros$$ Re: Print settings to change at a time for multiple sheets

2013-04-01 Thread Lalit Mohan Pandey
By using below event of workbook *Private Sub Workbook_BeforePrint(Cancel As Boolean)* *End Sub* you can specify the different print settings for different sheets On Monday, 1 April 2013 15:39:17 UTC+5:30, Pravin Gunjal wrote: Can we change the print settings at a time for multiple sheets, as

$$Excel-Macros$$ Re: Arrangement head of the table in the macro code

2013-04-01 Thread Lalit Mohan Pandey
To change worksheet name you are doing right and except this what you want is not clear so if there is something for which you need help you need to specify it clearly. On Tuesday, 2 April 2013 00:30:06 UTC+5:30, artforart artforart wrote: I must change a head in the original table. I have

$$Excel-Macros$$ Re: Before_Close event to reset Calc to xlCalculationAutomatic recalcuate workbook again, can it stopped

2013-03-31 Thread Lalit Mohan Pandey
I think you need to replace formula with vba code and this will make your report lite and as per my knowledge this is the only way to get rid of your issue. On Friday, 29 March 2013 19:58:09 UTC+5:30, Divaker Pandey wrote: I'm running into one problem with this. My workbook is pretty

$$Excel-Macros$$ Re: Vba Code to extract Data from one sheet to another

2013-03-29 Thread Lalit Mohan Pandey
Hi Hilary, Below code will help you Option Explicit Sub Copy_Visited_Client_Data() Dim wksModule As Worksheet Dim wksDashBoardAs Worksheet Dim wksUserSht As Worksheet Dim rngDataRangeAs Range

$$Excel-Macros$$ Re: Source Link updation error

2013-03-29 Thread Lalit Mohan Pandey
you can do one thing just copy and past data and its formatting. No need to move and copy sheet. If you did that. On Tuesday, 26 March 2013 10:34:50 UTC+5:30, Pravin Gunjal wrote: Hi, I am getting the following error message, while opening an attached file. As I am unable find out the

Re: $$Excel-Macros$$ Probability

2013-01-10 Thread Lalit Mohan Pandey
Are you sure about the output you mentioned in attached file. or output will be Starting Place A Starting place B Starting place C Starting place D Starting place Ending Place A B A C A D B A B C B D B Ending Place C A C B C D C Ending Place D A D B D C D Ending Place Regards, Lalit Mohan

$$Excel-Macros$$ Re: Prince Kumar - Most Helpful Member December'12

2013-01-10 Thread Lalit Mohan Pandey
Congrats Pricekeep helping man... On Thursday, 10 January 2013 22:19:58 UTC+5:30, Ayush Jain wrote: Dear members, Prince Kumar has been selected as 'Most Helpful Member' for the month of Dec'12. He has posted 92 posts last month and helped forum members through his excel expertise. I

$$Excel-Macros$$ Re: How to get max number from a database ?

2013-01-09 Thread Lalit Mohan Pandey
Hi Karan, Apply this formula with CSE in cell C4 =MAX(IF((($A$4:$A$9567)=$A4),$B$4:$B$9567,0)) and copied down Regards, Lalit Mohan On Wednesday, 9 January 2013 15:35:50 UTC+5:30, karan wrote: Hi Can anyone pls let me know how do i get the max value or date (using a formula and not pivot

$$Excel-Macros$$ Re: Excel file corrupt in Outlook

2013-01-09 Thread Lalit Mohan Pandey
, not None And Default Impersonation Level: SHould say Identify. When those are set properly, hit o.k and turn on your protected mode back on your Office applications. Everything works as expected :) Cheers :) Regards, Lalit Mohan On Wednesday, 9 January 2013 15:44:15 UTC+5:30, Ashish_Bhalara wrote

Re: $$Excel-Macros$$ Re: Excel file corrupt in Outlook

2013-01-09 Thread Lalit Mohan Pandey
Hi Ashish, Find below link may be it help you http://lds.netdimensions.com/ldslive/nd/fresco/repository/html/kit/Self%20Support%20Articles/Mail/AttachmentPreviewers.pdf Regards, Lalit Mohan On Wednesday, 9 January 2013 16:17:06 UTC+5:30, Ashish_Bhalara wrote: Thanks for reply sir, but my

Re: $$Excel-Macros$$ Re: Extracting Zip Code from Address

2013-01-09 Thread Lalit Mohan Pandey
Enjoy buddy. ;) On Thursday, 10 January 2013 12:18:12 UTC+5:30, Jai wrote: Thank you all Prince, Lalit, Noorain, The Viper and all if I missed anyone... It worked!! *From:* excel-...@googlegroups.com javascript: [mailto: excel-...@googlegroups.com javascript:] *On Behalf

$$Excel-Macros$$ Re: Select Unique values

2013-01-09 Thread Lalit Mohan Pandey
@Prince Instead of using dictionary or array a single line can do it If No Header ActiveSheet.Range($A$1:$A$23).RemoveDuplicates Columns:=1, Header:=xlNo If Header ActiveSheet.Range($A$1:$A$23).RemoveDuplicates Columns:=1, Header:=xlYes Regards, Lalit Mohan On Thursday, 10 January 2013 12:46

$$Excel-Macros$$ Re: Passing array of shapes to udf using vba

2013-01-08 Thread Lalit Mohan Pandey
Hi Amol, *Sub test(ParamArray Arr() As Variant)* * * *'Code here* * * *End Sub* Regards, Lalit Mohan On Tuesday, 8 January 2013 13:40:56 UTC+5:30, Amol J wrote: Hi Experts, I need help I have multiple shapes in sheet so i want color only one shapes in that perticular sheet. So I

$$Excel-Macros$$ Re: Passing array of shapes to udf using vba

2013-01-08 Thread Lalit Mohan Pandey
Hi Anmol, you can pass multiple shapes as an array using my previos post's method. Regards, Lalit Mohan On Tuesday, 8 January 2013 13:57:46 UTC+5:30, Lalit Mohan Pandey wrote: Hi Amol, *Sub test(ParamArray Arr() As Variant)* * * *'Code here* * * *End Sub* Regards, Lalit Mohan

Re: $$Excel-Macros$$ Fw: significance of using classes in VBA

2013-01-08 Thread Lalit Mohan Pandey
and remember how this is done in VBA? By creating a class that manage low level reading to and writing from a text file, the properties and methods in the class can easily be used in your macros. *Regards,* *Lalit Mohan* On Wednesday, 9 January 2013 09:20:16 UTC+5:30, Enrique Martin wrote

$$Excel-Macros$$ Re: [partially OT] Struggling with a Laptop buy decision; could some1 pls suggest good windows user grp?

2013-01-08 Thread Lalit Mohan Pandey
Either you can go for dell or hp http://www.dell.com/in/p/inspiron-laptops?~ck=bt http://www8.hp.com/in/en/products/laptops/index.html?facet=Everyday-computing Regards, Lalit Mohan On Wednesday, 9 January 2013 11:21:01 UTC+5:30, .. wrote: any views / comments folks ? Also, are there other

$$Excel-Macros$$ Re: Need a macro to copy cells based upon a values in other cell.

2013-01-07 Thread Lalit Mohan Pandey
Please check the data ranges you provided and it will not activate the sheet it will run for all sheets in the workbook. On Monday, 7 January 2013 23:43:51 UTC+5:30, Best Of Luck wrote: Thank you Lalit, The macros is running but does not select the activesheet and does not insert a comment

$$Excel-Macros$$ Re: Vlookup for two same values

2013-01-06 Thread Lalit Mohan Pandey
Hi Harshad, Could you please explain how can you defrenciate two same value like for which value i want data. Regards, Lalit Mohan On Friday, 4 January 2013 14:52:15 UTC+5:30, Prince wrote: Share your workbook. Regards Prince On Friday, January 4, 2013 2:47:55 PM UTC+5:30, harshad

Re: $$Excel-Macros$$ Re: Copy of Inventry control plan.xls

2013-01-06 Thread Lalit Mohan Pandey
Hi Harshad, First of all this thread should be comes under you previous thread as you are asking same thing in both thread https://groups.google.com/forum/#!topic/excel-macros/Y2PNmj1V-ZU%5B1-25-false%5D And second what is the parameter to differentiate two same values. Regards, Lalit Mohan

Re: $$Excel-Macros$$ office stationery template

2013-01-06 Thread Lalit Mohan Pandey
Type *excel stationary inventory template* in google.com and find which suits you. Regards, Lalit Mohan On Monday, 7 January 2013 08:02:44 UTC+5:30, Smitha S R wrote: Hi, Anyone please send me some good excel template to maintain the office stationery items, their consumption, opening

Re: $$Excel-Macros$$ Re: Copy of Inventry control plan.xls

2013-01-06 Thread Lalit Mohan Pandey
Hi Harshad, Provided details is not according to the file you shared. Regards, Lalit Mohan On Monday, 7 January 2013 10:53:25 UTC+5:30, harshad shukla wrote: The parametr is vendor.i want vendorwise quantity detail of stock item and item code is primary differentiating factor On Jan 7

Re: $$Excel-Macros$$ Slow processing of Data *

2013-01-03 Thread Lalit Mohan Pandey
Hi hilary, you can share your file by uploding it to other public file sharing website and share the link to download it. Regards, Lalit Mohan On Thursday, 3 January 2013 16:14:52 UTC+5:30, hilary lomotey wrote: This Ȋ̝̊̅§ very valuable info unfortunately this forum limits the size of data

$$Excel-Macros$$ Re: How to use vlookup on two parameters simultaneously

2013-01-03 Thread Lalit Mohan Pandey
Hi harshad, May be this link help you for applying vlookup. It contains tutorial with pictures http://www.timeatlas.com/5_minute_tips/general/learning_vlookup_in_excel Video tutorial http://www.youtube.com/watch?v=HjRjRnzy-hA Regards, Lalit Mohan On Thursday, 3 January 2013 16:09:23 UTC+5

$$Excel-Macros$$ Re: Login to gmail/yahoo and send email using excel vba

2013-01-03 Thread Lalit Mohan Pandey
Hi Ankur, You can find an example to login in gmail account using vba at below mentioned link:- http://powerofexcel.wordpress.com/2012/09/12/google-login-automation-through-excel-vba/ let us know for further assistance. Regards, Lalit Mohan On Thursday, 3 January 2013 19:11:36 UTC+5:30

$$Excel-Macros$$ Re: Fw: Conflict between Local and Global variable

2013-01-03 Thread Lalit Mohan Pandey
Hi Prashant, Can you explain why you take same name variable in Public and Private scope. Regards, Lalit Mohan On Thursday, 3 January 2013 23:15:17 UTC+5:30, prashant shinde wrote: Original message Subject: Conflict between Local and Global variable From: Shinde

Re: $$Excel-Macros$$ Re: Macro to create attendance Sheet for each Employee

2013-01-03 Thread Lalit Mohan Pandey
* *End If* *End With* *If Not Application.ScreenUpdating Then Application.ScreenUpdating = True* * * *End Sub* Regards, Lalit Mohan On Friday, 4 January 2013 01:48:16 UTC+5:30, prkhan56 wrote: **Thanks Lalit I can see the sample sheet and the code works fine. As I requested

$$Excel-Macros$$ Re: Need a macro to copy cells based upon a values in other cell.

2013-01-03 Thread Lalit Mohan Pandey
Hi Dear, Can you please share it again with the output or result you want to see for better clearity. Regards, Lalit Mohan On Friday, 4 January 2013 01:18:39 UTC+5:30, Best Of Luck wrote: Lalit thanks for the macro. I am loading an example sheet for you . I need to run it for each

Re: $$Excel-Macros$$ Re: how to remove space between numbers only.

2013-01-02 Thread Lalit Mohan Pandey
(A1,ROW(INDIRECT(1:LEN(A1))),4,0)+1), ,)) Regards, Lalit Mohan On Wednesday, 2 January 2013 13:25:54 UTC+5:30, Manoj Kumar wrote: Thanks Anoop. Solved My Problem. but it would be nice if formula also return the name along with phone number. On Wednesday, 2 January 2013 13:17:35 UTC

Re: $$Excel-Macros$$ Re: how to remove space between numbers only.

2013-01-02 Thread Lalit Mohan Pandey
Nice formula viper but the last space is missing. On Wednesday, 2 January 2013 15:07:20 UTC+5:30, §»VIPER«§ wrote: =LEFT(A1,MIN(IFERROR(FIND({0,1,2,3,4,5,6,7,8,9},A1),))-1)SUBSTITUTE(MID(A1,MIN(IFERROR(FIND({0,1,2,3,4,5,6,7,8,9},A1),)),255), ,) this should work with CSE On Wed, Jan 2,

Re: $$Excel-Macros$$ How to find special characters in a cell

2013-01-02 Thread Lalit Mohan Pandey
: Err.Clear* *Else* *CreateFile = False* *End If* ** *Set objFSO = Nothing* *Set objTFC = Nothing* *strFilePath = vbNullString* ** *End Function* Regards, Lalit Mohan On Wednesday, 2 January 2013 21:12:55 UTC+5:30, Danny Mariens wrote: I send workbook in annex

Re: $$Excel-Macros$$ Re: how to remove space between numbers only.

2013-01-02 Thread Lalit Mohan Pandey
Hi Viper, No issue.. :) i am not pointing you just letting you know. thanks for the nice formula. Regards, Lalit Mohan On Thursday, 3 January 2013 09:49:40 UTC+5:30, §»VIPER«§ wrote: Hi lalit I don't find any need for that. just working as required by OP On Wed, Jan 2, 2013 at 3:15

$$Excel-Macros$$ Re: Macro to create attendance Sheet for each Employee

2013-01-02 Thread Lalit Mohan Pandey
Hi Rashid, The file which i have sent you contains a sheet named *Sample *so if you have copied only the code then it will give you an error because the sheet is not available. Please check the same. Reagrds, Lalit Mohan On Thursday, 3 January 2013 00:57:11 UTC+5:30, prkhan56 wrote: Hello

$$Excel-Macros$$ Re: Macro to create attendance Sheet for each Employee

2013-01-01 Thread Lalit Mohan Pandey
Hi Rashid, Sorry for that i will send you the file by today evening itself Regards, Lalit Mohan On Tuesday, 1 January 2013 13:37:21 UTC+5:30, prkhan56 wrote: Hello Lalit I cannot see the complete code. If I go and check the original and paste the code I get lot of unwanted characters

$$Excel-Macros$$ Re: Excel Fun Video

2013-01-01 Thread Lalit Mohan Pandey
Animation rocks On Tuesday, 1 January 2013 16:16:52 UTC+5:30, amar takale wrote: Dear my all Excel Group Members, I found Excel fun Video on Internet while searching Excel Solution I like very much.I hope you all like it fun Video.So I attached this Excel.Enjoy every excel users.

$$Excel-Macros$$ Re: Happy b'day Noorain Ansari

2013-01-01 Thread Lalit Mohan Pandey
*Wish you a very happy B'Day Noorain* On Wednesday, 2 January 2013 00:13:59 UTC+5:30, ashish wrote: Happy b'day Noorain Ansari Regards Ashish Koul Sent on my BlackBerry® from Vodafone -- Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM

$$Excel-Macros$$ Re: Macro to create attendance Sheet for each Employee

2012-12-31 Thread Lalit Mohan Pandey
if in future it change then need to change code also.* Let me know if you need my further assistance. Regards, Lalit Mohan On Monday, 31 December 2012 13:05:42 UTC+5:30, prkhan56 wrote: Hello Lalit Please see the Master Sheet Col A and Col B Also I am pasting one of the previous post here

Re: $$Excel-Macros$$ Re: Loop for changing colour

2012-12-31 Thread Lalit Mohan Pandey
Hi Black, Did you find the solution is helpful. Regards, Lalit Mohan On Monday, 31 December 2012 10:18:25 UTC+5:30, black panther wrote: Dear Prince, No same color, any color but light color, What i am looking for:- if cell A1 having yellow B1 having blue then for 1500 time it need

$$Excel-Macros$$ Re: Happy New Year To All My Friends

2012-12-31 Thread Lalit Mohan Pandey
*Same to you prince and Happy new year to all group members. May all your dreams come true in this year.* Regards, Lalit Mohan On Monday, 31 December 2012 17:26:31 UTC+5:30, Prince wrote: *Happy New Year To All.* * * *May God bless you a very nice new year ahead. * * * * * *Regards

$$Excel-Macros$$ Re: Macro to create attendance Sheet for each Employee

2012-12-30 Thread Lalit Mohan Pandey
Hi Rashid, I didn't find any employe name in the master sheet there is only two column No and Action and please tell me from where i will take in/out time. Didn't understand the data you provided. Please check. Regards, Lalit Mohan On Sunday, 30 December 2012 14:16:09 UTC+5:30, prkhan56

$$Excel-Macros$$ Re: VBA to Destination of Value only

2012-12-30 Thread Lalit Mohan Pandey
)).Value = varArray Erase varArray End Sub Hope this will help you. Regards, Lalit Mohan On Monday, 31 December 2012 08:19:44 UTC+5:30, sswcharlie wrote: Hi Ashish Thanks for code. Still not working. Has message to say 'application defined or object defined error

Re: $$Excel-Macros$$ Re: Loop for changing colour

2012-12-30 Thread Lalit Mohan Pandey
(strRange).Resize(1, 1)* *Application.ScreenUpdating = True* *Sleep 300* *Loop* ** *Application.ScreenUpdating = True* *Application.DisplayAlerts = True* ** *End With* * * *End Sub* Hope it will help you. Regards, Lalit Mohan

Re: $$Excel-Macros$$ Re: VBA to Destination of Value only

2012-12-30 Thread Lalit Mohan Pandey
Dear Charlie, Please share your file with us if it is confidential then please share sample at least for better clearity. Regards, Lalit Mohan On Monday, 31 December 2012 11:46:32 UTC+5:30, sswcharlie wrote: Hi Lalit Have tried the code , same result. Getting the 'application defined

$$Excel-Macros$$ Re: How to extract sheet from many excel sheets

2012-12-30 Thread Lalit Mohan Pandey
* *.Close False* *Application.DisplayAlerts = True* *End With* *Next wksSht* * * *End Sub* * * Regards, Lalit Mohan On Monday, 31 December 2012 13:01:52 UTC+5:30, maulik wrote: Hi team, I am having 1excel workbook which contains 250 excel sheets and now I want to extract

Re: $$Excel-Macros$$ Data collection - Problem

2012-12-27 Thread Lalit Mohan Pandey
Hi Koneng, Explaing with steps would be more understandable. Regards, Lalit Mohan On Friday, 28 December 2012 09:36:24 UTC+5:30, Bhaity Koneng wrote: Dear All Experts, Gud mrng..!! any Solution for this ? Thanks Regards, Koneng On Thu, Dec 27, 2012 at 2:42 PM

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users * * *

2012-12-26 Thread Lalit Mohan Pandey
@ amar Nice work with more features. Thanks for sharing this to us. Regards, Lalit Mohan +919711867226 On Wednesday, 26 December 2012 20:09:53 UTC+5:30, (%Allmydreams%) wrote: Hi Guys check out this you may get some more ideas to think in different On Sat, Dec 22, 2012 at 4:38 PM

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users * * *

2012-12-26 Thread Lalit Mohan Pandey
Hi amar Nice work . Thanks for sharing. Regards, Lalit Mohan +919711867226 On Wednesday, 26 December 2012 20:09:53 UTC+5:30, (%Allmydreams%) wrote: Hi Guys check out this you may get some more ideas to think in different On Sat, Dec 22, 2012 at 4:38 PM, amar takale amart

$$Excel-Macros$$ Re: Sumif not working

2012-12-25 Thread Lalit Mohan Pandey
Hi Rajesh, Apply below formula instead of yours with Ctrl + Shift + Enter =SUM((MONTH($C$16:$C$380)=MONTH($B21))*(D$16:D$380)) and the mistake is the matching range is in date format and the criteria is in Text format. Regards, Lalit Mohan +919711867226 On Wednesday, 26 December 2012 11:24

Re: $$Excel-Macros$$ Re: Sumif not working

2012-12-25 Thread Lalit Mohan Pandey
Thanks Ms-Exl-Learner for the suggestion. Regards, Lalit Mohan On Wednesday, 26 December 2012 11:52:11 UTC+5:30, Ms-Exl-Learner wrote: @Lalit, Why not a *Non Array Formula* suggestion? In D2 cell =SUMPRODUCT((TEXT($B$16:$B$380,)=$B2)*(D$16:D$380)) Drag it right Do you think

$$Excel-Macros$$ Re: Macro to create attendance Sheet for each Employee

2012-12-23 Thread Lalit Mohan Pandey
Hi Rashid, Could you please explain when you want to run this process to capture InTime and OutTime of an Employee and how we know who are the employees. Is there any list of employee? Regards, Lalit Mohan On Wednesday, 19 December 2012 16:17:43 UTC+5:30, prkhan56 wrote: Hello All

$$Excel-Macros$$ Re: Need to convert the fax copy in Excel sheet.

2012-12-23 Thread Lalit Mohan Pandey
Hi Ganesh, You would need some OCR software to convert image to text. you can read this link i am sure its help you http://www.freewaregenius.com/2011/1...ree-ocr-tools/http://www.freewaregenius.com/2011/11/01/how-to-extract-text-from-images-a-comparison-of-free-ocr-tools/ Regards, Lalit Mohan

$$Excel-Macros$$ Re: Reason for delay in Filter

2012-12-23 Thread Lalit Mohan Pandey
like this: *Worksheets(Sheet1).range(A1:D10)..AutoFilter Field:=1, Criteria1:=a* Regards, Lalit Mohan On Saturday, 22 December 2012 21:51:03 UTC+5:30, prashant shinde wrote: Hi Friends, Can somebody please tel me what are the reasons for delay in Autofilter code. We have a macro file

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users * * *

2012-12-22 Thread Lalit Mohan Pandey
Hi Amar, I created this file just for the way hilary wants. Now the specifications are changing and for that matter it is not that much dynamic. Regards, Lalit Mohan On Saturday, 22 December 2012 12:32:37 UTC+5:30, amar takale wrote: Dear Lalit, but anyone can see Authorized user name.if

RE: $$Excel-Macros$$ Reason for delay in Filter

2012-12-22 Thread Lalit Mohan
Hi Hanumant, It would be better if you share file with us for better celerity. Regards, Lalit Mohan +919711867226 [IM Only] From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of hanumant shinde Sent: Saturday, December 22, 2012 9:51 PM To: Excel

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users * *

2012-12-21 Thread Lalit Mohan Pandey
Hi Hialary, Thanks you so much. and merry christmas to you too. Regards, Lalit Mohan On Friday, 21 December 2012 12:14:02 UTC+5:30, hilary lomotey wrote: Hi lalit This solution is beyond my expectation. Great work thanks a million and a merry christmas On Dec 21, 2012 4:42 AM, amar

$$Excel-Macros$$ Re: HTTP Request differences....

2012-12-21 Thread Lalit Mohan Pandey
With End Sub and call Test procedure whereever you need to refresh may be in button click or some where else. Regards, Lalit Mohan On Tuesday, 18 December 2012 19:24:04 UTC+5:30, raymond...@gmail.com wrote: Wrote an HTML request for a client to pull prices from a competitors website sent

$$Excel-Macros$$ Re: How to import web page Table in Excel

2012-12-21 Thread Lalit Mohan Pandey
With End Sub and call Test procedure whereever you need to refresh may be in button click or some where else. change sheet name and range aaccordingly. Regards, Lalit Mohan On Friday, 21 December 2012 13:59:59 UTC+5:30, Dhaval Shah wrote: Hello Friends i want to import below mention link

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users * * *

2012-12-21 Thread Lalit Mohan Pandey
Hi Hilary, Please find the revised version of the file. User name is the same as before. Let me know if it meets your expectation. Regards, Lalit Mohan On Friday, 21 December 2012 14:54:12 UTC+5:30, hilary lomotey wrote: Hi Lalit If I don't want only the name of the user to appear once

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users * * *

2012-12-21 Thread Lalit Mohan Pandey
Hi Pravin, You can also change the user access. Just login with Lalit Mohan and add user in Authorized_User sheet. Hope it will helps you. Regards, Lalit Mohan On Saturday, 22 December 2012 09:43:13 UTC+5:30, Pravin Gunjal wrote: Hi Lalit, Can we give different passwords to access

$$Excel-Macros$$ Re: Vba code to Check authorised users

2012-12-20 Thread Lalit Mohan Pandey
Hi Hilary, Please find the attached file. Hope it meets your expectation. Regards, Lalit mohan On Thursday, 20 December 2012 16:41:58 UTC+5:30, hilary lomotey wrote: Hi experts I want to keep a log of people and time as well as action ie open workbook and close workbk of people who use

Re: $$Excel-Macros$$ Re: Vba code to Check authorised users *

2012-12-20 Thread Lalit Mohan Pandey
Hi Hilary, Sorry for that, User name is Lalit Mohan or a whatever you want. and you can also change the user name in Authorised user sheet. Regards, Lalit Mohan On Friday, 21 December 2012 00:33:55 UTC+5:30, hilary lomotey wrote: Hi Lalit looks Li̶̲̥̅̊K̶̲̥̅̊ε̲̣̣̣̥ it but I don't know

Re: $$Excel-Macros$$ Re: Macro enabled sheet to be worked with manual protect / unprotect

2012-12-18 Thread Lalit Mohan Pandey
the solution given by prince can be used. if you have any query regarding this, you are most welcome to ask us. :) Regards, Lalit Mohan On Monday, 17 December 2012 17:24:57 UTC+5:30, Pravin Gunjal wrote: Thanks for your reply Lalit. My question is simple :- 1. I have an excel file (which

$$Excel-Macros$$ Re: Plz help urgent

2012-12-17 Thread Lalit Mohan Pandey
Try this also, =TRIM(REPLACE(A2, FIND(B2,A2),LEN(B2)+1,)) Regards, Lalit Mohan On Monday, 17 December 2012 11:58:24 UTC+5:30, Anil Saxena wrote: Hi All, plz help, I want correct email id and remove the bounce email from email id column. -- *Anil Saxena* MIS Executive - Response

Re: $$Excel-Macros$$ Re: Macro enabled sheet to be worked with manual protect / unprotect

2012-12-17 Thread Lalit Mohan Pandey
Dear Pravin, Could you please explain it more when you want to protect or unprotect the sheet. so that we can provide you best solution. Regards, Lalit Mohan On Monday, 17 December 2012 15:51:04 UTC+5:30, Pravin Gunjal wrote: Dear Prince Request for your co-operation on this issue

  1   2   >