• 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. dan_l

    Excel 2013 significantly slower for this code than 2003, why?

    Just for giggles, did try disabling any other addin's you have enabled and try rerunning the code.
  2. dan_l

    how to abstract data to another sheet

    this should be pretty easy. can you post a sample?
  3. dan_l

    Test sheet file (30 Minute Timer Macro)

    http://msdn.microsoft.com/en-us/library/office/ff196165.aspx
  4. dan_l

    Arrange Data

    ha! good call
  5. dan_l

    Arrange Data

    any forum that lists me as a notable member can't be very good.
  6. dan_l

    Shared Workbook

    how are you determining the cells?
  7. dan_l

    Macro to Download csv file from a dynamic date based url to a specified file location

    I would think power query would do this with ease?
  8. dan_l

    Shared Workbook

    Depends on your definition of "option":) Typically, I think people generate a log file to track changes.
  9. dan_l

    select cells

    To do what?
  10. dan_l

    Shared Workbook

    I don't think there's anything that would help with that but with 15-20 concurrent users I'd suggest that Excel isn't the right answer. Access or sharepoint maybe?
  11. dan_l

    Dashboard to track Employee vacations

    that's pretty slick. but please don't post live data.
  12. dan_l

    Help Needed

    what's the 6th column? There's a loop at the end of it that puts the data back into an array so you can output. First line is For i = 2 To coldoctors.Count, change the 2 to a 1.
  13. dan_l

    Proper use of "Me" in VBA

    also!! in a class you can go me.property to do stuff---- so like me.price * me.qty which is pretty much the cat's pajamas.
  14. dan_l

    Changing information based on cell change (VBA complex)

    Aha! It's a reference to Microsoft Calendar control 2007 which is not present on my win7/office 2013 thing. But it's in my xp/07 vbox. I'm still not clear on what you're trying to do. But, I think whatever it is will be much easier if you database your information on another worksheet and...
  15. dan_l

    copy- paste via VBA

    a1 is empty. Why would you want to copy something and paste it in the same place?
  16. dan_l

    Changing information based on cell change (VBA complex)

    I get "can't find project or library". What version of excel is this for?
  17. dan_l

    copy- paste via VBA

    I think we need a little more information on what you're trying to do. Otherwise: Sub copy() Dim rInput As Range Dim rOutput As Range Dim aData As Variant Set rInput = Sheets("sheet1").UsedRange aData = rInput Set rOutput = Sheets("sheet2").Range("a1") rOutput.Resize(UBound(aData, 1)...
  18. dan_l

    Adding Condition to Vlookup VBA

    so.... select case a1 case 1 set TheRange = [range1] case 2 set TheRange = [range2] end select vlookup(b1,[therange],2,false)
  19. dan_l

    Macro needs help

    from now on all of my code will show that message box......lol
  20. dan_l

    Adding Condition to Vlookup VBA

    Like the answer is to all broad vba questions, "it depends" What's the difference between the vlookups? Easiest way might just be a select case statement select case cell1 case 1 vlookup(a1,somerange,2,false) case 2 vlookup(a1,somerange,3,false) case 3 vlookup(a1,somerange2,2,false) case...
  21. dan_l

    Employee Overtime Tracker

    ...............this looks most efficiently achieved with formulas.....
  22. dan_l

    real-time data chart

    Villalobos, was this a leftover from the great dashboard contest of 2009?
  23. dan_l

    real-time data chart

    i'm still messing with this. the slicers makes the time line easy, but I totally fail with the excel 2013 charting engine.
  24. dan_l

    Excel stops working and shuts down?

    Naaa. You should be able to just disable it.
Back
Top