• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. L

    VBA code to Combine Workbook

    Hi Santhosh, have a look at Ron's web site there is sure to be something to help there. http://www.rondebruin.nl/win/addins/rdbmerge.htm
  2. L

    Apply Count function for a particular number repeated more than once.

    Hi, try this formula, it worked for me =SUMPRODUCT(1/COUNTIF(A$2:$A20,A2:A20))
  3. L

    6-7 Months Later...

    Symmetry, nice
  4. L

    vba code for custom date & time format

    Just an idea, i have found in the past for excel 2003 You may have to put your own button on the sheet and then asign the code to it as cmd buttons from later versions dont seem to work with 2003. Hope that works for you.
  5. L

    Webstyle Back button with VBA

    Hi, did you try the code that Luke linked to?. I tested it and it seemed to work. Though I did sometimes get error 9 subscript out of range.
  6. L

    Instead of Data Validation for Selecting value or text.......transpose maybe

    Prinz, would a user form be of any use or am I barking up the wrong tree? You could then send the answer to anywhere you choose and keep your answers in lists.
  7. L

    Prefixing existing codes

    Hi, do you have a sample file with layout of what you need. It will help with a speedier reply if folks know exactly what you are trying to do. :)
  8. L

    How can I use IF function then display result from a range or table?

    Could you upload a file with your before and after layout. It may make it easier for someone to help you.
  9. L

    Drop down list to edit other cells

    Hi, a sample file, with sample data and out put may make it easier for someone to help you.
  10. L

    Open & Update files

    Is this the same post crossposted in Windows secrets lounge and Mr excel
  11. L

    Hide formulas

    Maybe Copy, Paste special, Values?
  12. L

    Help With Solver

    :)
  13. L

    E-Attendance - VBA MACRO

    Maybe a short description of what it does would be helpful? :)
  14. L

    Dynamic Named Range as Row Source in Userform Combo Box using Excel VBA

    Lolo could you post a sample sheet, it would make it easier for someone to help with a solution.
  15. L

    Automatic Updates ...

    Is there any reason why the sheets have to be in separate workbooks. It may be easier to handle if they were in the same workbook.
  16. L

    Userform help to enter value in the selected cell

    Karthik there s a lot of useful information about Userforms on Debra's Site http://blog.contextures.com/archives/2013/06/20/getting-started-with-excel-userforms/
  17. L

    VBA snippet to open userform1 by keyboard shortcut

    Sorry i run excel 2003 so your procedure may be different. But alt F8 or Tools,macros or something similar will bring up a list of macros. Choose the one in "This workbook" then options, then a window opens with the option of asigning a shortcut key to the macro. Hope that helps a bit.
  18. L

    VBA snippet to open userform1 by keyboard shortcut

    sub showuserform1() Userform1.show End sub Paste into a module. and asign a shortcut key to it. ? Is this the sort of thing you were after?
  19. L

    open pdf file held on textbox value

    I dont know if this is relevant or not but I changed the PDF_DIR to PDFDIR in the following line to get it to work for me. Ialso had to add .pdf to the file name or it couldnt find it. PDF_Dir = "C:\Users\Acer\Desktop\package calculation\" 'Change to suit
  20. L

    hyper mouse lol

    I just had a similar problem with mine. Turned out to be my mouse pad was a bit soft... discovered that after buying new mouse :(
  21. L

    Do you know of a "all-in-one personal everyday-life excel template"?

    User forms are great for entering data in one place and then sending it off to relevant sheets. :)
  22. L

    Sorting and matching of Data Problem

    Which words do you wish to count?
  23. L

    Transfer the data from a userform to a workbook and retrieve data from workbook to userform

    To have a userform auto open you can use something like this code. I think there are other ways of doing it also. Option Explicit Sub MYEXCELSHOW() UserForm1.Show (vbModeless) 'optional or modal End Sub Sub auto_open() Call MYEXCELSHOW End Sub
  24. L

    Help required on the function "Insert - Create Name"

    You use this to name a cell, or range of cells. You can then refer to the name in formulas etc. Just ask if you have any more specific queries :)
  25. L

    EXCEL 2007 - VBA Multiple Combo Box Assistance

    Maybe you could use a "User Form" and have your data stored on another sheet.
Back
Top