• 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

    Linking files to hide data

    Sounds like you need lookups, but without some sample data, it's impossible to provide concrete advice.
  2. AliGW

    Automatic linking of products to machine

    That's a very vague question, but depending on your Excel version, look at these functions: XLOOKUP VLOOKUP & HLOOKUP INDEX MATCH (MATCH) LOOKUP Tell us which version you are using and provide a sample workbook if you need more assistance.
  3. AliGW

    excel formula

    These work: =SUMPRODUCT((A2:A10=E2)*1) =SUMPRODUCT((A2:A10=F2)*1)
  4. AliGW

    What's the purpose of Macros and VBA

    Plenty of real-life situations here (where people are asking for help with VBA and macros): https://chandoo.org/forum/forums/vba-macros/
  5. AliGW

    Copy dates

    You're welcome. :)
  6. AliGW

    Planner calculation

    OK. In column R, please manually enter the results that you are expecting for all cells highlighted in yellow. I am not following your explanation, so still have no idea what they should be instead of what is being returned.
  7. AliGW

    Formula to identify which teams and their percentage with the highest % of goals scored

    Cross-posted: https://forum.ozgrid.com/forum/index.php?thread/1233821-formula-to-identify-which-teams-and-their-percentage-with-the-highest-of-goals-s/
  8. AliGW

    Planner calculation

    But does it NEED to work in 2021 as well? I am trying to establish whether I can safely use 365 functions for this. No - 2021 does not have a lot of the functions available in 365.
  9. AliGW

    Planner calculation

    If any solution must work in 2021, then we can't use 365 functions - is this correct? What errors? Where have you mocked up your expected results? You have given us formulae, but nowhere have you said what their objective is. There is little point in reverse engineering a formula that does not...
  10. AliGW

    Planner calculation

    Which is the OLDEST version that any solution must work with? Please attach an updated sample workbook.
  11. AliGW

    Planner calculation

    Which version of Excel are you using?
  12. AliGW

    Extact nearest similar value from data by formula

    It's for Excel. If you wanted a GoogleSheets solution, you should have mentioned this in the opening post. Please provide a sample workbook (attached here if it's for Excel, or a link to an editable copy on GoogleDrive if it's for GoogleSheets).
  13. AliGW

    Copy dates

    If you have Excel 2021 or newer, get rid of all the manually entered dates in column A and paste this into A2 followed by ENTER: =INT(SEQUENCE(1000,,DATE(2023,8,19),0.25)) Change 1000 to suit however many rows you wish to fill.
  14. AliGW

    Populate names of people attending a course on any given date

    @vletm You have been a moderator here for a long time - so have I on EF. You should know by now that MANY members fail to read the rules before posting, even if you serve them up on a plate. Not reading the T&Cs is something that we are ALL guilty of in life to some degree or other. I don't...
  15. AliGW

    Populate names of people attending a course on any given date

    Because he hadn't read the rules on EF, nor had he read them here. This is solved according to TerryE on EF.
  16. AliGW

    Populate names of people attending a course on any given date

    In B8 copied across: =LET(f,FILTER(Schedule!$A$6:$A$16,FILTER(Schedule!$B$6:$P$16,Schedule!$B$3:$P$3=B6)=B7),FILTER(f,f<>$C$3)) Cross-posted: https://www.excelforum.com/excel-general/1429259-populate-names-of-people-running-the-same-course-on-any-given-date.html
  17. AliGW

    Populate names of people attending a course on any given date

    Please provide a sample workbook - we can't manipulate pictures. Are you using Excel 365 for this? What is the 'etc.'? We'd need a definitive list of activities to be ignored.
  18. AliGW

    Multiple Vlookup Formula

    Which version of Excel os this for?
  19. AliGW

    Vlookup in multiple pages.

    It is, but if tables aren't possible, you can easily limit the range: =IFERROR(VLOOKUP(A2,INDIRECT("'Info"&$H$1&"'!A1:B10000"),2,FALSE),"")
  20. AliGW

    Vlookup in multiple pages.

    You're welcome.
  21. AliGW

    Vlookup in multiple pages.

    In B2 copied down: =IFERROR(VLOOKUP(A2,INDIRECT("'Info"&$H$1&"'!A:B"),2,FALSE),"")
  22. AliGW

    pull specific data from cell string [need all 2 alphabets words from text string of a cell]

    Just for anyone whoi's interested, here's a 365 solutuon (won't work in earlier versions): =BYROW(Table1[Column1],LAMBDA(r, LET(ts,TEXTSPLIT(r," "),l,LEN(ts), TEXTJOIN(" ",,FILTER(ts,l=2)))))
  23. AliGW

    pull specific data from cell string [need all 2 alphabets words from text string of a cell]

    That's a shame - it would be very easy in 365.
Back
Top