• 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

    VBA code to select filters in pivot table slicer

    idk how to do it with a slicer but if you just add a pivot table filter, the filter will live in a cell, and you can just pop in a macro whatevercell.value="blah blah blah" and it will do the filter without much problem. If it's a presentation layer issue I know you can also hide the row with...
  2. dan_l

    How do i refer a cell in SAP code.

    don't forget to test that sap script in quality ;)
  3. dan_l

    How to use 2 excel file in the same sql in vba

    I'm not following. If you're trying to join data between "source file" and "city master", I guess I would probably create two recordsets and use a temp table or maybe recordset.fields.append to bluff a join.
  4. dan_l

    Vba copy and paste

    This sounds a lot like a database task instead of a excel macro task.
  5. dan_l

    Parsing Numeric Ranges....

    Kenneth: Output will be 2 different cells. The output is going to get fed into our ERP environment. Naray: the code can do the sort if need be. But ‘as it is found’ it will be unsorted.
  6. dan_l

    Parsing Numeric Ranges....

    Hi, I'm struggling mightily to wrap my head around this one. I've got ideas, but every time I sit down to do it I end up going down a rabbit hole. I've got a bunch of numbers like: 1 2 3 9 14 15 16 19 I want to parse them as a FROM and a TO like: From To 1 3 9 9 14...
  7. dan_l

    VBA & Business Objects

    power query and power bi are both free. Power Query is strictly query plus some pretty functional transformation functions. Power BI contains the same functionality as powerquery but also adds nifty dashboardish type display.
  8. dan_l

    Code to edit data in data base

    This will be vastly easier if you do this with a VBA form.
  9. dan_l

    Compare two List Objects multiple columns and add-delete rows

    I'm curious about this one; I'm not sure how I'd do it so it will run a mac.
  10. dan_l

    Execution Flow in VBA

    you might need to tighten this one up. I think it depends on how you structure the overall solution.
  11. dan_l

    Code Optimization - How would you do this?

    So---I've got a coding problem. I've got a solution. I'm looking for a second opinion if this is the right way to handle it, or if there's a better way: The set up: -It's access. The code lives in a class. -The overall process is: 1) Feed the class a bunch of parameters 2) A...
  12. dan_l

    VBA MACRO I need sql query

    Maybe a guru level sql guy could do something with this. My approach might start with sql to fetch the right data but for adding logic to the output you might be best off with a recordset. You could pretty reliably get the data, loop through it and account for various conditions, and construct...
  13. dan_l

    FYI: Opening PDF file(s) from Excel.

    https://sourceforge.net/projects/renameit/ Useful exactly once in a blue moon.
  14. dan_l

    Matrix to List (DataBase)

    This is like 3 clicks in power query.......
  15. dan_l

    Excel 2016 crashes when opening Conditional Formatting

    Any word? Did you try repairing the MSO install? Though that sounds like the ol' IT "reboot" strategy, I've seen it work for quirky stuff like this.
  16. dan_l

    Copy data from various sheets onto a master

    smug much?
  17. dan_l

    Copy data from various sheets onto a master

    is it that your statuses say "sheduled" instead of "scheduled"?
  18. dan_l

    The Beep

    Sub EmailNote() Dim sDistroList As String Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(0) sDistroList = whoever@whereever.com With OutMail .SentOnBehalfOfName = "" .To = sDistroList .bcc = "" .cc = "" .Subject = "Project...
  19. dan_l

    Excel 2016 crashes when opening Conditional Formatting

    You're absolutely high if you consider 2016 'relegation' from 2007 :) 32 bit, 64 bit office install? and if 32 bit, what version of windows?
  20. dan_l

    Copy data from various sheets onto a master

    this won't win points for style Sub movestuff() For Each ws In ThisWorkbook.Worksheets Select Case ws.Name Case "Projects", "Small Works", "Tech & Crate", "Tech Only" Call dowork(ws.Name) End Select Next ws Call movespecificvals End Sub Sub dowork(sWSName As String) Dim...
  21. dan_l

    Using ADO need to fetch data, for given date

    Use "#" to work with dates. Also, use "/" in between elements of a date instead of the "-". So like: sSQLSting = "SELECT * From [Sheet1$] WHERE endDate >= #01/05/2017# and endDate < #28/05/2017#" Lemme answer your next question too: you'll get input using a variable like dim userLowerDate...
  22. dan_l

    The Beep

    Ah. I use an email for that. Just at the end of a long routine I throw on a quick email that says "your stuff is done". It also works for any constituent users you may have who insist being notified of it too.
  23. dan_l

    The Beep

    ahhh trying to drive your users insane.
  24. dan_l

    Help- automating with VBA

    If there's no need to get cute: 1) put your data in a dynamic named range 2) create 2 pivot tables with the desired sort on and set filter to top X 3) Using getpivotdata() set up grids on your output sheet 4) simple....super simple....vba to refresh the pivot tables based on the named...
  25. dan_l

    combining time recorded for multiple tabs

    If it's a one off thing, I highly recommend doing this with powerquery.
Back
Top