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

    SUMIFS with INDEX MATCH

    SUMPRODUCT may be? Like this: =SUMPRODUCT($B$13:$J$18,((B$10:J$10=$A$3)*(B$11:J$11=$A$4))*($A$13:$A$18=A8)) See advanced sumproduct queries page for explanation of this technique. https://chandoo.org/wp/advanced-sumproduct-queries/
  2. R

    Reference chart title to cell not working in excel 2019

    Also some of the new fanged charts like sunburst, map charts don't work with linked cells or only support it for certain parts of the chart.
  3. R

    Approximataly match

    Hmm, not sure what sorcery Bosco's formula is doing But here is another one that seems to work with your data. Slab: =INDEX(E$2:E$60, MATCH($M3,IF(($B$2:$B$60=$J3)*($C$2:$C$60=$K3)*($D$2:$D$60=$L3)=1,$E$2:$E$60,NA()))) Scheme: =INDEX(F$2:F$60...
  4. R

    Fill a Square chart

    You can't fill like that. Either use Area Charts (with date axis) so you can get the precision or just use Spreadsheet grid with conditional formatting or a bunch of columns with gap=0 or something else.
  5. R

    ThisWorkbook.Activate does not WORK

    You are right. It is not clear what OPs code is doing, so I assumed everything is happening in one file, in which case ThisWorkbook = ActiveWorkbook
  6. R

    ThisWorkbook.Activate does not WORK

    Unless you are running the code from Add-in, ThisWorkbook refers to Active workbook, so no need to activate it again. Refer to MS help on this - https://docs.microsoft.com/en-us/office/vba/api/excel.workbook
  7. R

    Summary table from 3 different tables

    @Hany ali & @ravikiran Why not use Power Query to do the merge. You won't be able to get it in the exact format (with merged cells or blank cells), but that is just cosmetic. If you have Excel 2013 or above, you can use it. Follow below steps. Open new file, go to Data > New Connection >...
  8. R

    Exclude a part of Chart from being filtered in power BI

    Interesting... without messing with actual DAX, here is a simple way to do it. Make two charts, size them same way and overlay one on top of another. Now link the slicer to interact with only the top chart. That should do the trick. If you want to venture in to DAX, you can use ALL() to clear...
  9. R

    Source vs Uses of funds - Excel dashboard

    @GraH - Guido Show us your creativity and make a few...
  10. R

    Auto Sorting of Pivot Table

    Hi Rhon... If you sort a pivot table, whenever you refresh (or change filters) the sort is reapplied automatically. This is the default behavior. Have you tried setting up the sort and refreshing data on your pivots?
  11. R

    Certification coureses in MS Excel and Power BI

    Hey @vijay.yvcs We offer certificates on all our courses. That said these are not accredited by Microsoft or anyone. To be honest, it is very hard to assess student ability in technically complex online classes. For our training programs, see https://chandoo.org/wp/training-programs
  12. R

    Namograph

    @Grant Bradley Interesting question. I had to wikipedia namograms. They might be easy to construct (not the weird circular ones) assuming we know the equations. I couldn't figure out equation for the MFI of combined resin from what you wrote. That said, I think you can build a normal...
  13. R

    What's new Functions in Excel

    Also read Bill Jelen's free ebook in case you want to learn more about these newly added functions. They will forever change the way we write complex array formulas and set up calculations. https://www.mrexcel.com/download-center/books/2018/ExcelDynamicArraysStraightToThePoint.pdf
  14. R

    ROUTE DUPLICATION FINDER

    @bharath You can use a formula based CF rule to highlight such items. To prevent duplicate rules from being entered, you can apply same logic in custom data validation too. For CF: Add a rule with this =COUNTIFS($C$2:$C$21,$C2,$D$2:$D$21,$D2)+COUNTIFS($C$2:$C$21,$D2,$D$2:$D$21,$C2)>1 and...
  15. R

    Highlight nth smallest cells greater than target cell

    @Travis Frank Interesting question. You can use Conditional Formatting > Between rule with formulas to check this. See attached file. Here is how it works. We want to highlight 10 cells that are between smallest positive stock & 9 prior weeks. =SMALL(IF($C$5:$C$69>$C$3,$C$5:$C$69),10)...
  16. R

    Remove not used values, in dimensions

    @Lolo... another option is if you are using measures in the pivot table, then you can create the measure such a way that it would return BLANK() if the count / sum etc is 0 (ie there is no value for the city). Then when you put this measure in pivot (and nothing else other than city), pivot...
  17. R

    Hui's World - An Excel project of Global Proportion

    Having seen a preview of this (thanks Hui for sending it), couldn't wait for the reveal :) :awesome:
  18. R

    Pairs of numbers

    Interesting problem. I gave up formula driven approach half-way thru once I realized how long and confusing my formula got. So off to PQ. There were some excellent solutions here. I wanted to create a function to generate pairs. To make it generic, I made two functions. one for creating...
  19. R

    Removing a number within a string of text

    If you are using Excel 2016 or Office 365, why not use Power Query to do this for you. You can easily setup a query to read part numbers, ignore quantities from another list and create new output (either comma delimited as you have or some other format). Here is an example of how to do this. Of...
  20. R

    Merging/ Adding values from same cell in different excel sheets

    Oh yes, simply use either Power Query or consolidated pivot tables. If you can post a sample file I can show you how to do this with PQ.
  21. R

    How to trick absolute reference for indirect formula

    @tiong999 Not sure what exactly your end goal is, but it seems you want to kind of transpose your data. If so, it is better to use INDEX. See this: =INDEX(B$4:CF$5,1,B$12+ROWS($A13:$A$13)) in B13 and drag down, sideways to get some numbers. Read more about INDEX here...
  22. R

    VLOOKUP, MAPPING FROM TWO DIFFERENT WORKSHEETS. SOS.

    @Cornelius deWeever Welcome to our forum and thanks for posting a question. Without looking at your file, it will be very hard to understand exactly what mistake you are making. That said, try this: See if your formula cells are marked as "TEXT" from Home > Format area. If so, switch to...
  23. R

    pivot text - student health codes

    @DWpzaz Welcome to Chandoo.org forums and thanks for your post. You can use Power Query to turn your table to a text pivot easily. Use below steps. Load your data in Excel. Convert it to a table (Ctrl+t) Load this to Power Query Select student ID column and group by. In the operation area...
  24. R

    Power Query - Check all Columns

    @Aquila... For excel file, you can also add this "Discount" column if doesn't exit using either IF then or try otherwise constructs like below. =if Table.HasColumns(#"output table", "Discount") then #"output Headers" else Table.AddColumn(#"output Headers", "Discount", each 0), = try...
  25. R

    Payment shortage calculation

    @snjpverma I am not sure if I know what you want. But assuming you just want to know for each month the shortage / excess values, you can use below approach. You need a column to identify tax dates. You have colored them in yellow, but formulas can't read cell color. So let's say column E...
Back
Top