• 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. jeffreyweir

    countifs: Related item(s)

    Crossposted at http://forum.chandoo.org/threads/formulas-using-vba.20736/ Anand: Can you please post just one question in future? Posting the same question in two separate places just adds extra work. Have you considered whether a PivotTable can assist you with this problem?
  2. jeffreyweir

    formulas using vba

    Cross posted at http://forum.chandoo.org/threads/formulas-using-vba.20736/
  3. jeffreyweir

    formulas using vba

    Anand: Using VBA to populate the worksheet with an excel function will not magically make Excel calculate any faster. Excel is still generating the results, not VBA. Furthermore, it is not clear to me from your sample file exactly what you are wanting to do. Can you elaborate further?
  4. jeffreyweir

    VBA to loop through successive Pivot Table Report Filter values

    Do you know that EXcel can automatically create separate copies of pivots - one for each item in a PivotFilter - and put them in separate tabs? It's called 'Show Report Filter Pages' http://www.pivot-table.com/2012/10/29/create-worksheet-for-each-pivot-item/
  5. jeffreyweir

    Pivot table showing additional items in drop down

    Re the report filters not being 'additive' like they are with tables, one way around this is to use Slicers, which grey out any items that aren't in the currently filtered subset. On the upside, they are easier to select things from. On the down side, they take up a bit more screen real-estate...
  6. jeffreyweir

    VBA to loop through successive Pivot Table Report Filter values

    Are you trying to filter the PivotTable for each different client, Dave?
  7. jeffreyweir

    VBA to through a Pivot Table column and apply each value to a slicer

    Hi David. Slicers can act on more than one PivotTable if they are based on the same data source. See my article at http://dailydoseofexcel.com/archives/2014/08/16/sync-pivots-from-dropdown/
  8. jeffreyweir

    Struggling to get a formula to pull results from a table

    Hi Brian. Got your file, thanks. @NARAYANK991 is right: You can greatly condense the information down into a small table. For instance, just by giving the lower bounds of each pricing band, table3 can be reduced from 2 million cells to this: If you create similar tables for all your data...
  9. jeffreyweir

    Struggling to get a formula to pull results from a table

    While a direct calculation would be good if possible, this volume of data won't pose any problems whatsoever, because we're only doing two lookups on it: one for the column, one for the row. This can be done lightning fast - particulary because we can probably use the 'Exact Match' form of...
  10. jeffreyweir

    pivot like indexing values with multiple filters

    Sorry, I don't understand your requirements and so am unable to help
  11. jeffreyweir

    How frequently are slicers used in the workplace?

    They aren't used much...primarily because few people realize how powerful they are when it comes to syncing pivots. They should be used much, much more. Embrace them, my friend. They are the future. I wrote something on them at...
  12. jeffreyweir

    Struggling to get a formula to pull results from a table

    Brian: See attached. I've converted any data to Excel Tables whereever I could. This is a habit you should get into. Also, I've unmerged your cells. Don't use merged cells if you can avoid it...they make things difficult in the long run. How many rows are your lookup tables? Hundreds...
  13. jeffreyweir

    Search for multiple texts in cell, return specific text

    @shrivallabha: in terms of Arg1, I see at http://excelxor.com/2014/10/20/extracting-numbers-from-a-string-1-consecutive-numbers-at-start/ that XORLX has perhaps a better approach:
  14. jeffreyweir

    pivot like indexing values with multiple filters

    Ah, I think I understand your requirements now. See attached, that uses 2 PivotTables and some slicers to connect them. You can actually just use the slicers, and get rid of the first PivotTable if you want. You can also just put some slicers on the original table, too...and not have...
  15. jeffreyweir

    pivot like indexing values with multiple filters

    So in Sheet4 where you say "Instead of showing up with numbers I want to show up the data instead here", what data are you talking about? Your file isn't clear to me.
  16. jeffreyweir

    Multiple Pivots

    http://dailydoseofexcel.com/archives/2014/08/16/sync-pivots-from-dropdown/
  17. jeffreyweir

    pivot like indexing values with multiple filters

    Why not just use a Pivot?
  18. jeffreyweir

    How to increase the speed of the macro.

    Before you make any changes to the PivotTable, do this: ActiveSheet.PivotTables("PivotTable1").ManualUpdate = TRUE ...and then after you've made all the changes, do this: ActiveSheet.PivotTables("PivotTable1").ManualUpdate = FALSE That will stop the PivotTable recalculating every time you...
  19. jeffreyweir

    Hi ryanchild292. Addin is not available yet. When it is, I'll be sure to post over at the...

    Hi ryanchild292. Addin is not available yet. When it is, I'll be sure to post over at the Chandoo forum and here.
  20. jeffreyweir

    Search for multiple texts in cell, return specific text

    @shrivallabha Have you ever used this in practice?
  21. jeffreyweir

    Search for multiple texts in cell, return specific text

    @shrivallabha Might be safer to replace 99 with a larger number, or even 9^9 (which will be way larger than the largest list that this would ever work on, to be sure). @mariur89 Shrivallabha's formula is better than mine, so use that one. (And I'll put it in the book).
  22. jeffreyweir

    Search for multiple texts in cell, return specific text

    Hi Shrivallabha. I never thought of using LOOKUP. Great stuff. Seems the difference in things returned is purely down to sort order in the lookup list. For instance, given the lookup terms Tax, Taxi, and Taxidermist, then my formula requires the lookup list to be sorted Z to A whereas yours...
Back
Top