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

    Reverse lookup based on a data value?

    Here's your PM: It's user error. It fails becase the month headers in D2 onwards are TEXT. They need to be DATES, as they were in the sample workbook. Once you fix this, it should work. Sorry - it's not for me to do this for you. Next time ask here, NOT via private message, please.
  2. AliGW

    Reverse lookup based on a data value?

    You sent me a PM - I will not provide help via PM. Once you have asked the question here, I will help you. Thanks.
  3. AliGW

    Reverse lookup based on a data value?

    Please don’t ask questions via private message - everything needs to be asked here. Thanks!
  4. AliGW

    Reverse lookup based on a data value?

    There's a breakdown in the attached showing what each parameter in the formula returns.
  5. AliGW

    Reverse lookup based on a data value?

    Just shout if you want me to explain anything.
  6. AliGW

    Reverse lookup based on a data value?

    Sorry - try this: =LET(a,A5:A24,b,X2,d,FILTER(D5:V24,a=b),p,FILTER(A5:C24,a=b), fm,BYCOL(d,SUM), x,XLOOKUP(99999999,fm,D3:V3,"",-1), HSTACK(VSTACK(A4:C4,p),VSTACK(FILTER(D3:V3,D3:V3>=x),FILTER(d,D3:V3>=x))))
  7. AliGW

    Reverse lookup based on a data value?

    No worries - feel free to click on LIKE under my post
  8. AliGW

    Reverse lookup based on a data value?

    This, then: =LET(d,D5:V24,p,FILTER(A5:C24,A5:A24=X2), fm,BYCOL(d,SUM), x,XLOOKUP(99999999,fm,D3:V3,"",-1), HSTACK(VSTACK(A4:C4,p),VSTACK(FILTER(D3:V3,D3:V3>=x),FILTER(FILTER(d,D3:V3>=x),A5:A24=X2))))
  9. AliGW

    Reverse lookup based on a data value?

    It does exactly what you asked for in your sample data. Did you actually try it or just look at it and not see MONTH and assume it wasn't right? This bit finds the first column with an entry: x,XLOOKUP(99999999,fm,D3:V3,"",-1), If it's not doing what you want, then you need to provide a...
  10. AliGW

    Reverse lookup based on a data value?

    Seen, but no reply - did it work for you?
  11. AliGW

    Reverse lookup based on a data value?

    Assuming you have 365, try this: =LET(d,D5:V24,p,FILTER(A5:C24,A5:A24=X2), fm,BYCOL(d,SUM), x,XLOOKUP(99999999,fm,D3:V3,"",-1), HSTACK(p,FILTER(FILTER(d,D3:V3>=x),A5:A24=X2)))
  12. AliGW

    excel table query

    There is no sample data in the table, but when you filter the table, the SUBTOTAL will reflect only visible cells. Can't see a problem here.
  13. AliGW

    Text to Date format in Excel

    What's your locale? Here in the UK it converts automatically. You could try Data | Text to Columns > Next > Next > select DMY > Finish. Attach a sample workbook.
  14. AliGW

    Countif

    You have a column of text items and a column of numbers - is it the numbers you want to generate? If so, this in B1 copied down: =COUNTIF(A$1:A1,A1)
  15. AliGW

    have look up data appear once only

    Any good??? Some feedback would be nice ...
  16. AliGW

    have look up data appear once only

    Try this: =IF(COUNTIF(Main[[#Headers],[group]]:[@group],[@group])=1,XLOOKUP([@group],Ref[group],Ref[delta from budget]),"")
  17. AliGW

    have look up data appear once only

    This works in your workbook: =IF(COUNTIF(A$3:[@group],[@group])=1,XLOOKUP([@group],Ref[group],Ref[delta from budget]),"")
  18. AliGW

    have look up data appear once only

    For XLOOKUP: =IF(COUNTIF(A$3:A3,A3)=1,XLOOKUP(A3,$K$13:$K$15,$L$13:$L$15),"")
  19. AliGW

    have look up data appear once only

    In B3 copied down: =IF(COUNTIF(A$3:A3,A3)=1,VLOOKUP(A3,$K$13:$L$15,2,0),"")
  20. AliGW

    Howdy need a little help

    Here's one of many tutorials online that might help you: https://www.excel-university.com/dependent-drop-downs-with-filter/
  21. AliGW

    Conditional formatting applied incorrectly but formula works

    Next time, attach a sample workbook, NOT an uneditable picture.
  22. AliGW

    Conditional formatting applied incorrectly but formula works

    Attach a sample workbook for us to troubleshoot. A small, DESENSITISED section of it will suffice.
  23. AliGW

    Using TRIM to remove spaces in a CriteriaRange

    You're welcome - feel free to LIKE my solution. :)
  24. AliGW

    IF/OR The Result Of An Index Match Statement

    It's a formula, not actually code. If you want it explaining, just shout. You're welcome - feel free to hit LIKE under my post.
  25. AliGW

    IF/OR The Result Of An Index Match Statement

    For example, if you have Excel 2021 or newer, this in H10: =LET(x,INDEX(C54:C69,MATCH($I1,$A54:$A69,0)), IF(ISNUMBER(MATCH(x,{"H","O","L","I","D","A","Y"},0)),"HOLIDAY",x))
Back
Top