• 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

    assigning range values to an array

    That works. How would I go about making that array multidimensional?
  2. dan_l

    assigning range values to an array

    Yes. I need 2. So, this is something of a prototype for a project I'm working though: I've got like eleventy gazillion rows of cumulative data. Like Month 1: 10 Month 2: 20 Month 3: 30 Month 4: 40 So---each month I added 10. The ultimate objective is to take those values, and in...
  3. dan_l

    assigning range values to an array

    This is probably me being new to arrays: Dim MyArray(1 To 1000, 2) As Long Dim rSourceRange As Range Dim rTargetRange As Range Set rSourceRange = Range("B1:b1000") Set rTargetRange = Range("g1:g1000") MyArray = Range("b1:b1000") So ideally I want to set a range, have the array store...
  4. dan_l

    Automatically enable macro

    I know it's a pita. If I had a dollar every time I got a phone call like: Person: "YOUR MACRO DOESN"T WORK" Me: "What's it doing?" Person: "NOTHING THATS THE PROBLEM" Me: "Did you enable macros?" I'd be rich.
  5. dan_l

    Chart - Dynamic Named Range Problem

    Weird: I'm not getting an error. It's just not working. So ha. Error fixed, right? Anyway: indirect() returns the value of the cell you put together. So, where A6 is equal to 40, and your rowlocation is 6, doing indirect("a"&rowlocation) will return 40. I guess you could mess...
  6. dan_l

    Chart - Dynamic Named Range Problem

    I don't think you attached it.
  7. dan_l

    Password should be shown like "*****"

    I don't think you can do that with a basic inputbox. You can do it pretty easily with a custom form though.
  8. dan_l

    Data transfer

    god damn muppets screw up my vba all the time.
  9. dan_l

    A few General questions about Dashboards

    You can set up some really, really simple vba (I'm talking like total copy/paste stuff) to refresh pivots. I've found refreshing pivot charts to be kind of difficult to manage long term. Better option: use pivot tables and set up regular charts using =getpivotdata().
  10. dan_l

    I want Macro

    try application.ontime You can set a timer to call a given function. That function can open a workbook, spit out a number, and close the workbook.
  11. dan_l

    vba: hide chart

    Weird. Not that it matters, but I can't get it to work with activesheet. Rather, I actually have to specify the sheet. For this project it will be fine because I'll have the sheets named pretty clearly. Thanks.
  12. dan_l

    vba: hide chart

    This may be simple. Here's the set up: I've 4 dynamic charts in a 'dashboard' kind of layout. The sources for the charts change based on vba. Each chart has it's own "display" flag to deal with a bunch of conditions where I won't want ot display the chart. So, no data to display, some...
  13. dan_l

    Macro to Send autoreply with Ticket No in outlook

    Where is the macro going to be running?
Back
Top