• 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

    All possible combination

    Just a word: I've done a similar project at least a half dozen times over the last 2 years or so. Doing it with excel works, but the absolute fastest way to get it done is access.
  2. dan_l

    Maintaining chart colors across different computers

    I think the last time I encountered this I ended up changing the colors with vba.
  3. dan_l

    Returning month number from calendar week....

    I think I can work with this. Thanks Narayank.
  4. dan_l

    Returning month number from calendar week....

    One of my olap gadgets drops out date series calendar week. I need to return the month associated with that week using vba. It's actually part of a vba driven automation routine, so I could probably insert a formula wit hvba, I"m just having trouble cooking up the vba to do it. 40.2012...
  5. dan_l

    New Forum Celebration

    I dig. Is the wysiwyg editor xinha?
  6. dan_l

    consolidate month wise and salesman wise

    Pivot table? Row Labels A B C Grand Total 1/1/2013 6450 3950 2750 13150 1/2/2013 5050 3850 2600 11500 2/1/2013 1350 1350 2/2/2013 1500 1250 2750 3/3/2013 1350 1350 4/3/2013 1100 1200 2300 Grand Total 15300 10500 6600 32400
  7. dan_l

    Instant Command [SOLVED]

    cool. you're now a vba expert;)
  8. dan_l

    Using metadata from avi files in VBA [SOLVED]

    Try to find a cli utility that will extract the metadata from an avi file- ideally to a .csv file. Sourceforge may be a good place to start. If you can do that, I _think_ you can get coax vba to open the text file and get all the data.
  9. dan_l

    ....another silly udf question....

    is there a function that will return the type of a variable? IE somefunction(myvariable) results as long, double, variant, whatever?
  10. dan_l

    ....another silly udf question....

    Bob, I've messed with the format function: trouble it brings the value back as text which doesn't really play nice with pivot tables. And you're probably right, but I"m still a n00b:) Hui, Can that be portable or do I have to put it into each workbook individually? Also, why the double?
  11. dan_l

    ....another silly udf question....

    So this UDF returns a date as a serial. Every time I run it over my data set, I just right click and format the cells as date, and go on with my pivot tables. That's fine, but I wonder if it's possible to return the value as a formatted date. I tried format([serial],"MMDDYYYY"), but that...
  12. dan_l

    udf to extract numeric value [SOLVED]

    thanks fellas.
  13. dan_l

    udf to extract numeric value [SOLVED]

    So, I've got some really noisy, messy, bad data that I have to 'make useful'. I've been able to do most of it with a combination of a handful of UDF's, standard excel functions, and a CSV editor. One part still has me a little worried. So I've got cells that look like this: Product...
  14. dan_l

    Dashboard or RAG Idea

    I guess for somebody it's called 'onshoring'. heh. :) Share your data. I think a lot of times stuff like this ends up being really simple (and low maintenance too)
  15. dan_l

    A new forum....?

    I just want a good code tag. Also, just my 2 cents - I don't have a dog in this fight: don't discount phpbb. I think vbulletin costs about 400 bucks usd. phpbb is FOSS and, at least from a user perspective, as feature rich.
  16. dan_l

    Histogram Like Line in charts [SOLVED]

    dot plot with connectors maybe?
  17. dan_l

    Excel Spreadsheet Art

    bwa! one gawker site got it last week, the other got it this week. sorry
  18. dan_l

    Excel Spreadsheet Art

    http://www.spoon-tamago.com/2013/05/28/tatsuo-horiuchi-excel-spreadsheet-artist/
  19. dan_l

    Formula parentheses [SOLVED]

    That's actually not a bad idea though. I wonder if that's something you could put in AHK, to hot key parenthesis over a given element in a formula.
  20. dan_l

    Formula parentheses [SOLVED]

    shift+9 and shift+0 :)
  21. dan_l

    GETPIVOTDATA formula to identified FILTER from slicer

    http://www.powerpivotpro.com/2010/12/another-way-to-get-and-use-slicer-values-in-formulas/ http://www.excelguru.ca/content.php?263-Retrieving-Selections-From-A-PivotTable-Slicer Do either of these help?
  22. dan_l

    Excel 2010 drop down selection

    Probably the easiest is to arrange your data into a table with all of those values calculated out. Use data validation or a drop down box to 'choose' which result is delayed.
  23. dan_l

    How to Change Data to Row Titles and vice versa [SOLVED]

    I don't know if there's a quick way to achieve this. Maybe you could code the cities and pilots in numeric values and use a pivot table. There's this too: http://www.clearlyandsimply.com/clearly_and_simply/2011/06/emulate-excel-pivot-tables-with-texts-in-the-value-area-using-vba.html
  24. dan_l

    Formula for year/month

    Year([date]), month([date])
  25. dan_l

    help me for the salecommision formula

    You may need to post sample data. I get the first part, the second part I'm not getting "but in some area(route) they will get double commision,(>125=2.00,>15=3.00) sale entry in same cell commision value only change how its work?"
Back
Top