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

    Send email (with VBA) and update "status"

    Sorry about that. Marc is correct, remove the leading period.
  2. Luke M

    Send email (with VBA) and update "status"

    Edit: Typo Sub SendEmails() Dim lastRow As Long Dim OutApp As Object Dim OutMail As Object Dim strbody As String Dim i As Long Set OutApp = CreateObject("Outlook.Application") 'How much data is there? lastRow = Cells(Rows.Count, "A").End(xlUp).Row...
  3. Luke M

    XIRR

    @grcshekar You have cross-posted again to another forum w/o providing links: XIRR modification to ignore some columns (excelforum.com) As you've already been previously warned in this thread about this, and continued to break the rules, this thread will be closed. Please remember to follow...
  4. Luke M

    If cell contains text, replace it with a specific value

    Formula you can put in P2, copied across and down. =IF(ISNUMBER(SEARCH(P$1,$O2)),P$1,"")
  5. Luke M

    why offset formula displays '0'

    Address and MATCH function tell the formula to look in G9. Then you told it to offset 2 rows in the first OFFSET function, landing you on G11. Then you told the outer OFFSET to go down 1 row and over 2 columns, landing you in I12, which is a blank cell. Thus, the value is 0. Overall, this is a...
  6. Luke M

    Scatter Chart with Dots displaying Spreadsheet Contents

    Please do not hijack other user's threads. If you have a question, you can start a new thread.
  7. Luke M

    Graph

    I'm not sure what you mean. If you have all the literal numbers on the chart, then you didn't need a chart. Could just do a data table.
  8. Luke M

    Graph

    Calculate duration, and then do a stacked bar chart using Start time and duration. Format the Start time series so that the duration bars appear to be floating. With your example data, I'm assuming Branch was supposed to go from 11 am to 1 pm (you had till 1 am). The processes don't appear to...
  9. Luke M

    Timeline - Extraction of Selection Label in a cell

    Rather than tacking on to an old thread, you'll get better luck by posting a new thread. As this is an old thread, I am closing it.
  10. Luke M

    looking up multiple values based on date and category

    Per forum rules, remember to include you crosspost links: https://www.excelforum.com/excel-formulas-and-functions/1378105-looking-up-multiple-values-based-on-date-and-category.html#post5675517 https://www.mrexcel.com/board/thread...egory.1205058/
  11. Luke M

    Automated filling of subsequent sheets based on condition

    Hi Pasadu, If there's a specific forum member you'd wish to donate to, several have links in their signature, or the Excel Ninjas (volunteer forum mods) have links here: https://chandoo.org/forum/threads/donate-support-our-ninjas.18150/ If you wish to support Chandoo directly, his contact info...
  12. Luke M

    A challenge for someone much smarter than myself (Please Help!)

    Rather than hijacking a thread (especially an old thread) it would be better to start your own new thread where others will be more likely to see it.
  13. Luke M

    Client wise Sales Commission Calculation (Tiered, Variable and Fixed - All in One)

    We are not sure to what you are referring. You're not the author of this post, nor a previous poster in the thread. If you have a similar question, I'd suggest creating your own thread so others see a thread that hasn't been answered, and thus are more likely to reply.
  14. Luke M

    Client wise Sales Commission Calculation (Tiered, Variable and Fixed - All in One)

    There are two parts to the formula currently. One tries to do a lookup using the tiered system, and if that fails, it tries to find a Variable value. If that also fails, result is 0. The latter is easier, so I'll start there SUMIFS(D:D,A:A,H2,B:B,"Variable") This is a simple SUMIFS. To factor...
  15. Luke M

    Client wise Sales Commission Calculation (Tiered, Variable and Fixed - All in One)

    Like many things in Excel...."possibly". ;) If it's a different tier or a new customer, that can be very easily added to existing table and formula will handle it. If it's a completely new thing that's not a tier or fixed %, I'd have to know more about what the new thing is. But, if you can...
  16. Luke M

    Client wise Sales Commission Calculation (Tiered, Variable and Fixed - All in One)

    For client F, you have expected result of 11%, but I think it should be 7%? See attached for proposed solution.
  17. Luke M

    Find Unique Values and Sum using Power Query

    Please avoid posting links to non-excel related sites, as you'll likely get flagged by our anti-spam logic.
  18. Luke M

    VBA to convert .pdf to .txt

    @rreily Rather than replying to someone else's thread (especially an old one), you'll get more help if you start a new thread. You are welcome to link to other thread(s) for reference, but a new thread with 0 responses is more likely to catch the attention of other members, as they'll see that...
  19. Luke M

    PowerBI Quiz

    Not only is this a cross-post from Mr. Excel, but this is straight up just a homework assignment. You didn't even take the time to say which part you were having trouble with.
  20. Luke M

    Looking for a formula that will display the name of the employee available on the selected date and time.

    I checked out the file in a quarantined environment. There's no VBA in the file, and then I also perused the XML code. File only has two sheets, and everything checks out there. Not sure what was causing your machine to flag; but sounds like a false positive like you linked.
  21. Luke M

    VBA Code to Dynamically Expand Table if Another Table Expands

    There is nothing in the code that currently makes a sound. Vletm's response is a bit sarcastic, but your question was like asking "Can we the default color of cells be white?" in the fact that there's nothing we need to do to make your request happen. @vletm please remember to take care in your...
  22. Luke M

    Request Formula

    Formula would be: =INDEX(A:A,MATCH(F1,C:C,0)) You might have to change the formatting of G1 to display value as a date, if you just see a large number at first.
  23. Luke M

    VBA Code to Dynamically Expand Table if Another Table Expands

    Nope, nothing wrong. Your request, as written, is just a bit more complex. That said, I would argue that your plan is a bad plan. There's no reason to completely duplicate data from one sheet to another. Instead, just add the Notes field to the existing table in Transactions sheet. That way...
  24. Luke M

    Chart Labeler

    Many years ago, I got this add-in from John Walkenbach's website. Helpful for adding custom labels to your chart(s). Since then, I've been unable to find the link to original source. The tool was provided freely with description that it may be freely distributed. I take no credit for the...
  25. Luke M

    Good Quality add-in RNG for Excel VBA

    It seems to me the article is just self promoting a somewhat useless bit of info. Yes, you've "only" got over 16 million random numbers. But why would you need more in Excel? That's more rows than a single sheet can even hold. Reminds me of long ago when people would previously complain that an...
Back
Top