• 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

    How to password protect powerpivot workbook

    I'm not sure the answer on this one. I think this feature is called "perspectives" though.
  2. dan_l

    Better alternative to MS Excel

    Meh. Yes, Google Docs, Open Office, Kingsoft's stuff, whatever all exist. But they're not excel. So yeah - need to make a little budget file or organize your CD collection? by all means one of those will be fine. But if you're a spreadsheet pro, you need excel.
  3. dan_l

    Unable to use UDF from personal macro workbook to all workbooks

    You can: -Keep it in your PMB -Save it as an addin (I like this one better) If you need to share it, you can just share the addin or bake it into the workbook.
  4. dan_l

    PowerBI Keeps Crashing

    I had this happen to me when I was running Office from a vbox. For whatever reason, it just "went away" one day and now everything is fine:)
  5. dan_l

    Macro/VBA for grouping/outline of WBS structure

    just fwiw, last time I got myself into something like this, it ended up swelling out of control. Excel kinda sucks for project management - which I guess I should have seen coming - but ya know....
  6. dan_l

    Using Excel Macros to Process Real Time Data

    also, nobody here is an excel professional either:)
  7. dan_l

    VBA Not Working On Work Computer

    how about a file?
  8. dan_l

    Macro to find and delete records by multiple column data

    Well here's 2 ways that come to mind: -Suck all of your data into an array, write records that aren't flagged as to delete into a new array, put the new array out into a new workbook. -Use access. The latter of which would take you about 5 minutes to set up....
  9. dan_l

    Macro to find and delete records by multiple column data

    How big are the two lists you have?
  10. dan_l

    I want to convert my calculations into a Macro

    Ehhhh maybe not. If you're not counting actual values and instead are counting formatting instances an array is probably not going to work.
  11. dan_l

    I want to convert my calculations into a Macro

    Maybe? This looks like something that could be achieved with arrays. I'd really need to understand your application though....
  12. dan_l

    Inventory Stock Take VBA

    I'm having a bitch of a time opening your file and I'm not sure why. Try this - like I say: it's dead simple and I never get style points
  13. dan_l

    Inventory Stock Take VBA

    it should be simple. something like this.... Sub test() Dim irow As Integer Dim obSheet As Worksheet Dim sName As String sName = [Name] Set obSheet = Sheets(sName) irow = obSheet.UsedRange.Rows.Count + 1
  14. dan_l

    Unable to add the table in the body of the outlook mail.

    ehhhh.... Seems like you should be able to do it either in the half ass field & char10 & field & char10 (easy) or I guess you should try to manipulate the whole text thing in html? That sounds like a bitch....
  15. dan_l

    Unable to add the table in the body of the outlook mail.

    I don't understand; the email comes up with body from cell e4. what's the problem
  16. dan_l

    VBA Macro: Demand Forecast

    Errr....Ok so.... -What is it you're looking for in terms of the actual FC calculation? VBA can iterate any calculation you want, it's just a matter of scoping out something that's applicable to your business. -You said in your first post, that you're looking for forecast in monthly buckets...
  17. dan_l

    Unable to add the table in the body of the outlook mail.

    .....seems to work just fine for me....
  18. dan_l

    VBA, Excel and MS Query

    I don't follow? Are you trying to run multiple queries that are identical save for parameters?
  19. dan_l

    Need Advice: Refreshing 150+ pivot tables without crashing Excel

    one more question: why do you have 150 pivot tables in the same workbook?
  20. dan_l

    Need Advice: Refreshing 150+ pivot tables without crashing Excel

    I would try refreshing them individually. Depending on how if the pivot tables are spread across multiple worksheets, deepak's solutions should help.
  21. dan_l

    VBA to find the delivery against goods receipt

    How many records are we talking here?
  22. dan_l

    better way of copy from one sheet and paste to another?

    arrays! dim sourcerange as range dim outrange as range dim sourcearray as variant set sourcerange = sheets("whatever").range("a1:f100") sourcearray = sourcerange set outrange = sheets("outputsheet").range("a1") outrange.resize(ubound(sourcearray,1),ubound(sourcearray,2)) = sourcearray
  23. dan_l

    Trying to loop vba

    http://www.techrepublic.com/blog/10-things/10-ways-to-screw-up-your-vba-code/1968/
  24. dan_l

    Trying to loop vba

    Don't use gotos. Put everything in a loop. This is just on the fly and it won't work, but you'll get the idea: sub populsatesomestuff() dim sometext1 as string dim sometext2 as string dim sometext3 as string dim somedate as date dim repeatvalue as integer dim dateholder as date for i = 1...
  25. dan_l

    Count color

    It's explained best here: http://www.ozgrid.com/VBA/sum-count-cells-by-color.htm
Back
Top