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

    Adjust the equation to get the correct value

    Try, In W2, formula copied down: =ROUNDUP(SUM(VLOOKUP(F2&E2,Data!A$3:AJ$23,MATCH(Q2,Data!$1:$1,0)+{0,1},0)*B2:C2),2)
  2. B

    Get the latest value from a table

    Or, In E2 formula copied down: =IF(LOOKUP(9^9,C:C/(A:A=A2))=C2,C2,"")
  3. B

    Sum if formula returns 0 but should give a different value

    Hi, 1] Hidden tailing space CHAR(160) were found both in your Dashboard sheet and Countries sheet. 2] Use a helper column to remove hidden space CHAR(160) 3] Then, use a Sumif function to return the desired result 4] Please see attached file.
  4. B

    Move value to formula result

    Your example in cell M4 already have $125.32, Then. What do you want?
  5. B

    Move value to formula result

    =INDIRECT(ADDRESS(4,13,1)) or, =INDIRECT("r4c13",) or, =INDIRECT(TEXT(413,"\r00\c00"),)
  6. B

    Calculate points awarded based on several conditions

    1] In your worksheet F36, sum of Front 9, Back 9 & Final Score =IF(N32>N33,1,0)+IF(X32>X33,1,0)+IF(Y32>Y33,1,0) 2] You can use this shorter and give the same result. F36: =(N32>N33)+(X32>X33)+(Y32>Y33) And F37: =(N33>N32)+(X33>X32)+(Y33>Y32) Regards
  7. B

    Maximum match column

    Another formula approach, criteria data may not be at the same row of Group Table, pls see below: 1] Define Name: 2] In H2, formula copied down: =IF(1-ISNA(MATCH(G2,INDEX(GroupTable,,MaxColNum),0)),INDEX(CroupHeader,MaxColNum),"") 3] See attachment
  8. B

    Help - Return an specific value from 2 linked arrays of numbers

    Try a simply VLOOKUP function, something like: In D1, enter formula and copied down: =VLOOKUP(C1,A$1:B$31,2,0) Regards
  9. B

    need help to formulate an excel formula to share the required output

    Another old function approach. [M3]: =INDEX(B$3:B$13,INT((ROW(A1)-1)/7)+1) [N3]: =IF(M3="","",ROW(A1)+1) --> custom formula as "d-mmm" [O3]: =IF(M3="","",IF(M3<>M2,VLOOKUP(M3,B$3:C$13,2,0),0))
  10. B

    Need help in getting the string between “\”

    Then try this formula to extract string after 2 or 3 slashes : In B1 enter formula copied down: =SUBSTITUTE(FILTERXML("<a><b>"&SUBSTITUTE(TRIM(MID(SUBSTITUTE(SUBSTITUTE(A1," ","^"),"\",REPT(" ",50)),99,98))," ","</b><b>")&"</b></a>","//b[contains(., '^')]"),"^"," ")
  11. B

    Automatically deduct strikethrough from total

    Formula Solution with an old school Excel GetCell function 1] Create a range name: Select C18 >> Formulas >> Define Name >> Name : SumStrikethrough Refers to : =-SUM(GET.CELL(23,IF(1,+OFFSET($C$2:$C$16,ROW($C$2:$C$16)-MIN(ROW($C$2:$C$16)),)))*$C$2:$C$16) OK >> Finish Then, 2] Enter in cell...
  12. B

    Sorting column data which is based on formulae including Blank cells

    Or if you want a single formula solution, you may try this: In F2 array (CSE) formula in F2 and copied down: =IFERROR(INDEX($D$2:$D$200,MATCH(SMALL(IFERROR(MID(D$2:D$200,3,1)+(ROW(A$1:A$200)/1000),""),ROW(A1)),IFERROR(MID(D$2:D$200,3,1)+(ROW(A$1:A$200)/1000),""),0)),"")
  13. B

    Sorting column data which is based on formulae including Blank cells

    Or, try this simple formula solution with helper columns. 1] In Helper1, F2 formula copied down until blank: =IF(D2="","",MID(D2,3,1)) 2] In Helper2, G2 formula copied down until blank: =IF(F2="","",0+(F2&COUNTIF(F$2:F2,F2))) 3] In Result, H2 formula copied down until blank...
  14. B

    Need help in getting the string between “\”

    If your data always started in: "C:\Program Files\" Then, you can try this: In B2, formula copied down: =MID(A2,18,FIND("\",MID(A2,18,99))-1)
  15. B

    Average select values in column based on helper column

    In D2 formula copied down : =IF(ROW(A1)<=MAX(B:B),AVERAGEIFS(A:A,B:B,ROW(A1)),"") Or, =IF(ROW(A1)<=MAX(B:B),AVERAGEIF(B:B,ROW(A1),A:A),"")
  16. B

    Extracting Data and Represent the data in a Cell

    @Peter Bartholomew Here is my Excel2021 formula testing result: Formula 1: {=TEXTJOIN("+",,FILTER(header,input<>"",""))} ----> Failed Formula 2 : =TEXTJOIN("+",,FILTER(header,C4:N4<>"","")) ----> Correct Formula 3 : =TEXTJOIN("+",,IF(C4:N4<>"",header,""))----> Correct (That is why I used...
  17. B

    Extracting Data and Represent the data in a Cell

    In Excel2021, we do not have BYROW and LAMBDA function, and TEXTJOIN is not dynamic as well. So, for Excel2021 In P4 formula copied down: =TEXTJOIN("+",,IF(I4:N4<>"",I$3:N$3,""))
  18. B

    Circular references

    I think use Power Query is the easiest way to combine 4 workbooks into 1. Please try to investigate this way. Regards
  19. B

    Extracting Data and Represent the data in a Cell

    Please be noted the forum rule " one post one question" For your question 1, this formula suit with your Excel2013 and all old Excel version. In A4 formula copied down: =SUBSTITUTE(TRIM(IF(C4<>""," "&C4&C$3,"")&IF(D4<>""," "&D4&D$3,"")&IF(E4<>""," "&E4&E$3,"")&IF(F4<>"","...
  20. B

    count specific text occurrences within a range

    Using Sumproduct instead of Countif, because Countif does not combined with another function, like CHAR function. In B2, formula copied down: =SUMPRODUCT(0+ISNUMBER(FIND(CHAR(10)&A2,CHAR(10)&data!B$2:B$16)))
  21. B

    Need a formula to Count Employees and Sum Until reaches a certain dollar amount and return date

    I'm using Excel 2021, and here is my formula solution (not remarkably well as Peter's). 1] In L2, enter formula: =UNIQUE(Table1[Employer Name]) 2] In M2, enter formula & copied down: =COUNTA(UNIQUE(FILTER(Table1[Employee Name],Table1[Employer Name]=L2))) 3] In N2, enter formula & copied...
  22. B

    Assistance with formula to display items 2 days before the expiring date.

    Display items 2 days before the expiring date (for Excel 2016) I've also hard coded the date in cell E1 in 3/20/2023 and you'll need to revert it to =TODAY() as per your requirement. In A3, formula copied across right and down until blank...
  23. B

    latest entry data against unique number

    Try, 1] In B3 copied down: =MAX(FILTER(raw!B:B,(raw!A:A=A$1)*(raw!C:C=A3),"")) 2] In C3 copied down: =FILTER(raw!D:D,(raw!A:A=A$1)*(raw!B:B=B3)*(raw!C:C=A3),"")
  24. B

    Need to eliminate matching amount either in debit credit or in netting

    Please open a new post for your new question Regards
  25. B

    Need to eliminate matching amount either in debit credit or in netting

    Try, with helper column formula solution. In E3, formula copied down: =IF((COUNTIF(H:H,G3)>0)*(C3=""),(COUNTIF(G$2:G3,G3)>COUNTIF(H:H,G3))*B3-C3,0)+IF(COUNTIF(G:G,H3)*COUNTIF(H:H,G3),0,B3-C3)
Back
Top