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

  1. polarisking

    How to dynamically define pieces of a range

    Thanks so much to all of you. The formula that works, VLETM and Monty, is elegant in its simplicity: If the row is "asking" for a Reset Amount calculation, then subtract all prior Reset Amounts from the total of all Amounts. The final formula is =IF(C2="Y",SUM($B$2:B2)-SUM($D$2:D1),"") Peter...
  2. polarisking

    How to dynamically define pieces of a range

    Please see the attached file. I have a range [Amount} defined as B2:B11. Whenever there's a "Y" in column C, Reset, I want the sum of all the Amount cells up to, and including, the row with the "Y". For each successive value of Y in Reset, I want the sum of Amount NOT INCLUDING the prior...
  3. polarisking

    Simple question, easy answer sought. I've been out of the game for a while.

    Assuming time expressed as 6.45 is in cell A1. =INT(A1)&" Hours and "&MOD(A1,1)*100&" Minutes left to work"
  4. polarisking

    Counting the number of leap years between 2 dates

    Exactly what I needed. Thank you.
  5. polarisking

    Summing a variable range

    As long as the first day begins in Row 8, this works =SUM(INDIRECT("B"&7+startDay&":B"&5+leadTime+startDay+1)) To make dynamic, create another named range and call it day1Begins. For your spreadsheet, the value is 8. The formula changes to...
  6. polarisking

    Counting the number of leap years between 2 dates

    I consider myself a fairly advance user, but I need help understanding what this formula is doing =SUMPRODUCT(--ISNUMBER(--(ROW(INDIRECT(YEAR(StartDate)&":"&YEAR(EndDate)))&"-02-29"))) For StartDate, use 10/1/2001. For EndDate, use 2/1/2014. The correct answer is 3 (2004, 2008, and 2012) and...
  7. polarisking

    VBA and Power Query

    Your response was EXACTLY what I was looking for. Thank you.
  8. polarisking

    VBA and Power Query

    Fixing the numerous misspellings in the original post. I'd like to run VBA against some very large datasets (> 1MM rows). Is it possible to leverage the capabilities of Power Query which can handle enormously large files and run VBA code inside of Power Query?
  9. polarisking

    VBA and Power Query

    I'd to run VBA against some very large datasets (> 1MM rows). Is it possible to leverage the capabilities of Power Query which can handle enormously large files and run VBA code inside of Powe
  10. polarisking

    Where do the millions of rows live?

    Thanks for replying, Alan. So, for really large files, you can only deal with them in the PQE, Data Model, or Power BI. Would that be correct? I wonder if there’s a JET database behind all this (the engine supporting ACCESS)
  11. polarisking

    Where do the millions of rows live?

    I'm having trouble getting my head around the "Load" process. I get that while one's in the PQE the data file size is, for intents and purposes, unlimited. But once your transform, Data Model, and everything else is complete and your opt for Load, it seems you're back in Excel which has the...
  12. polarisking

    Paste contents of Named Range

    NM. Once I upgraded to 365 everything's working the way it's supposed to.
  13. polarisking

    Paste contents of Named Range

    I must be doing something incredibly stupid. I have a named range with 5 pieces of data, say A1 thru A5. I want to paste this data into another sheet using the Named Range. Can't do it. Any ideas?
  14. polarisking

    How to preserve relative references using a vertical copy where the formula needs to move horizontally

    Here's the solution I came up with. The formulae in H13 thru H17 accomplish what I needed to do. I put A3:E25 in a named range - dataNbrs. Using the INDEX function, by column, and the Row() function to move the columns left to right, I'm able to get what I need. Hope this is helpful to some...
Back
Top