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

    Formatting rule for alternating color for row groups

    If you're comparing with the previous row, the formulas should be =C2=C1 and =C2<>C1
  2. H

    Pivot Table - Difference between column values

    Add calculated fields. https://chandoo.org/wp/pivot-table-tricks/#calculated_fields
  3. H

    Multiple Match Formula

    In your first formula you're using INDEX(matrix, row, col, area), this of course gives an error since you're providing (matrix, row, row, col). In the second formula you're using INDEX(matrix, row) and that would just return the whole row instead of only the rate. Here's 2 formulas that gives...
  4. H

    Text Formulas - Need Assistance

    Write the formula in B2, then copy and paste: =INDEX(TRIM(MID(SUBSTITUTE($A2,".",REPT(" ",50)),{1,51,101,151,201},50)),COLUMNS($B2:B2))
  5. H

    Combined Coded letters in one cell

    A slightly shorter formula, but with the same principle =INT(NPV(-0.9,,INDEX(SEARCH(MID(E2,LEN(E2)-ROW($A$1:INDEX(A:A,LEN(E2)))+1,1),"KMYSOREBAN")-1,))%)
  6. H

    Multiple Multiple IFs

    A2*4+B2*5 is just math, for example with A2=2 and B2=3: 2*4+3*5 = 8+15 = 23 LOOKUP will find the number equal or below it (21) and give the result as "Moderate", as both are the 2nd value in the arrays.
  7. H

    Multiple Multiple IFs

    In a single formula: =LOOKUP(A2*4+B2*5,{9,21,25,36},{"Minor","Moderate","High","Very High"})
  8. H

    Cut Paste from filtered data

    Short answer: You can't. Without any filters you can select A1:G7, press F5 (shows Go To dialog), click in Special, select blank cells only. Now you can delete the selected cells (CTRL+Minus(-)) and select to move cells to the left.
  9. H

    Extract data from single cell to multiple columns

    https://support.office.com/en-us/article/connect-to-a-json-file-f65207ab-d957-4bf0-bec3-a08bb53cd4c0 https://json-csv.com/
  10. H

    RAG Status

    Green: =COUNTIF(D5:D256, ">"&TODAY()) Amber: =COUNTIFS(D5:D256, ">"&TODAY(), D5:D256, "<="&TODAY()+28) Red: =COUNTIF(D5:D256, "<="&TODAY())
  11. H

    Need help in Excel formula to address FullSalutation

    You may want AS (in C20) to show as Supporter too, in that case change the formula to this =IF(OR(C20="",C20="unknown",LEN(C20)=1,AND(OR(SUMPRODUCT(IFERROR(FIND({" ","&","."},C20),0))>0,EXACT(UPPER(C20),C20)),LEN(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(C20," ",),"&",),".",))<3)),TRUE,FALSE)
  12. H

    Need help in Excel formula to address FullSalutation

    Formula in F2: =IF(OR(C2="",C2="unknown",LEN(C2)=1,AND(SUMPRODUCT(IFERROR(FIND({" ","&","."},C2),0))>0,LEN(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(C2," ",),"&",),".",))<3)),TRUE,FALSE)
  13. H

    sumproduct

    You didn't remove it, you just added a different IF. Your formula should start with =SUMPRODUCT, do not add a IF.
  14. H

    sumproduct

    You don't need the IF(C4 = "","", part. When you multiply the overtime rate by 0 (hours) the total will be just (regular rate * regular hours).
  15. H

    Convert currency from webpage

    You can import http://www.floatrates.com/daily/usd.xml and use their provided rates instead.
  16. H

    Countif and substitute

    Formula A2, then copy and paste: =IF(D2="", "", UPPER(LEFT(SUBSTITUTE(D2, " ", ""), 4)) & TEXT(COUNTIF(A$1:A1, LEFT(SUBSTITUTE(D2, " ", ""), 4) & "*") + 1, "00"))
  17. H

    ActiveX Listbox filled with date. But converts to serial numbers

    I just inserted a ListBox and changed the format in A1 to mmm/dd, it worked fine It seems the problem is the ComboBox, not the opposite
  18. H

    Choose Named Range to use depending on cell value

    You can use INDIRECT(cell) to refer to named ranges.
  19. H

    Sumif/Index/Match/Match - Please Help!

    Check the attached file. It seems fine to me, do you have access to SUMIFS?
  20. H

    Approximate Searching for Multiple Items

    Formula in C11 =INDEX($A$4:$A$7,MATCH(0,INDEX(SEARCH($A$4:$A$7,A11),),-1))
  21. H

    Time Formula

    You can use (DAY(L12)*24+HOUR(L12))*60 or TEXT(L12,"[h]")*60 to get the full hours.
  22. H

    Auto complete table

    Formula in J5:J19 =IF(LOOKUP($B$3,$N$5:$N$19)=N5,$B$3,"") In C6:C7 and E7 use MAX =MAX($I$5:$I$19) =MAX($K$5:$K$19) And in E6, rounded to 5000 =MROUND(MAX($L$5:$L$19),5000)
  23. H

    Sumif/Index/Match/Match - Please Help!

    =SUMIFS(INDEX(INDIRECT($I7&"!1:1048576"),,MATCH($H7,INDIRECT($I7&"!3:3"),0)),INDEX(INDIRECT($I7&"!1:1048576"),,MATCH("Date",INDIRECT($I7&"!3:3"),0)),">="&DATE(K$3,K$4,1),INDEX(INDIRECT($I7&"!1:1048576"),,MATCH("Date",INDIRECT($I7&"!3:3"),0)),"<="&EOMONTH(DATE(K$3,K$4,1),0))
  24. H

    How to find duplicate cells for a particular range

    Type the formula in D2, then copy and paste: =IF(COUNTIFS(A:A,A2,B:B,B2,C:C,C2)>1,"Sprint "&B2&" has duplicate Value","")
  25. H

    Overlapping times with two criteria

    Just add the customer reference to the SUMPRODUCT formula, as (Customer=CustomersList) For a better explanation I recommend you upload a sample file of how your data looks like.
Back
Top