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

Recent content by markwilliams12

  1. M

    MSN Stock Quotes Not Updating

    Is anyone else having issues getting updated stock information from the MSN Stock Quotes? (looked for other threads on this topic, but didn't find any.) I've got a handful of ticker symbols that are still returning updated share value after markets close, but it is returning that same value for...
  2. M

    Run VBA code after paste

    Yeah, the way I'm attempting to do it is by no means efficient. And I do have some concerns about how long it will take Excel to crash if all cells are selected. :) I wasn't aware VBA could script an undo/redo. I'll have to play with your idea a bit.
  3. M

    Run VBA code after paste

    Thanks! I'm using the Workbook_SheetSelectionChange to capture when a cell was changed. I'll be expanding that to capture values of the range selected to an array. The calling of my LogChange Module is done via Workbook_SheetChange. So throw in a couple of loops and I can log range changes of...
  4. M

    Run VBA code after paste

    I have a UDF that logs actions in one of my excel sheets. It works great, except that it isn't aware when I (or another user) copies and pastes a range of cells to another range of cells. I would have hoped that MS would have included a AfterPaste Worksheet Event, but this doesn't exist...
  5. M

    Excel Charting Help

    @Mike86 - Thanks for the reminder to used Name Ranges. Can't believe I forgot about that option! @NARAYANK991 - I used your part 2 Very nice formula! Works great! Thank you both.
  6. M

    Excel Charting Help

    Here's the data: 6/1/2009 $7,623.21 6/2/2009 $7,619.67 6/3/2009 $7,616.75 6/4/2009 $7,531.05 6/6/2009 $7,514.32 6/7/2009 $7,514.32 6/8/2009 $7,514.32 6/9/2009 $7,511.09 6/10/2009 $7,421.73 6/11/2009 $7,368.50 6/12/2009 $8,040.21 6/13/2009 $8,034.51 6/14/2009 $8,034.51...
  7. M

    Excel Charting Help

    I am wanting to chart some data, that is pretty simple to do manually, but I'm interested in how to setup the series dynamically. The data is 2 columns. Column 1 - Date Column 2 - Amount Data is entered daily. It currently covers 6/1/2009 to today. I would like to create series that...
  8. M

    Formula uses Case to generate numbers, but when charted shows zeros

    The purpose of my tracking doesn't matter. If you find moon phases bizarre, then consider that my function returns the numbers 1 through 8. Just looking for a way to chart Numeric data returned from a UDF. Any thoughts?
  9. M

    Formula uses Case to generate numbers, but when charted shows zeros

    I'm tracking my weight and to extend my excel knowledge decided to track Moon Phase as well to see if there is any impact to my weight. I've got a UDF that I use to determine Moon Phase as shown here: Public Function MoonPhaseNumber(InputDate) MoonYear = Year(InputDate) MoonMonth =...
  10. M

    Is there a way to get a Chart to move down as you scroll

    I have several tables of data with corresponding charts. The tables grow to several hundred rows and if I want to view the chart with this data, it is currently located at the top of the worksheet. Is there any trick that I'm missing that would allow me to pin, anchor or otherwise tie the...
Back
Top