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

    multiple dropdown lists with same data

    Hi: Please find the attached. Thanks
  2. N

    using match function with multiple criteria

    Hi: 1 means true. Thanks
  3. N

    using match function with multiple criteria

    Hi: You can use array formulas as well, there are different ways to skin a cat. However, the array formula you had used was wrong, search the net for index array formula to get the right syntax. Thanks
  4. N

    How to count # of appearances in other sheets?

    Hi: Not sure how your data sits..., the easiest way is to pull a pivot table. Thanks
  5. N

    using match function with multiple criteria

    Hi: Formula in yellow column. Note: Not an array formula. Thanks
  6. N

    coditionally put data if condition met

    Hi: This is a basic level VBA, there are hundreds of solutions available on various forums for this. I did not learn excel or VBA in one day, I don't even have an IT background unless you try to figure out solutions on your own you are not going to learn. I am talking from experience. Thanks
  7. N

    coditionally put data if condition met

    Hi: This is a simple if condition please give a search in Google and find a solution. After posting around 94 messages here I would expect you to at least try to find a solution before blankly asking here only because its a free service. Thanks
  8. N

    Using single cell for two solutions

    Hi Use the following formatting as custom format +?#,###,###,###.0;-?#,###,###,###.00 in N8 Thanks
  9. N

    Copying values from Cell [that is changing dynamically based on a Dropdown Box Trigger - Scenarios]]

    Hi: May be you want to read through the following. https://trumpexcel.com/scenario-manager-in-excel/ Thanks
  10. N

    Help with lookup

    Hi: Here you go, Thanks
  11. N

    Data Filter

    Hi: Find the attached. Thanks
  12. N

    Data Filter

    Hi: Just remove the data validation , the macro will still work. Thanks
  13. N

    Split columns and filter with timeline

    Hi: May be something like this? =LOOKUP(MID(M2,SEARCH("-",M2)+1,LEN(M2)-SEARCH("Days",M2))*1,$T$1:$T$5,$U$1:$U$5) Thanks
  14. N

    Data Filter

    May be this? Private Sub Worksheet_Change(ByVal Target As Range) Application.ScreenUpdating = False With Sheet1 On Error Resume Next .ShowAllData i& = .Cells(Rows.Count, 1).End(xlUp).Row If Not Intersect(ActiveCell, .Range("A2:A2")) Is Nothing Then If .[A2] <>...
  15. N

    Paste formula till end of the data

    Another method Sub blah() With Sheet1 i& = .Cells(Rows.Count, 1).End(xlUp).Row .[J2].Resize(i - 1).Formula = "=IF(H2=""NO"",""NO Part Reqd"",""Yes part Reqd"")" End With End Sub Thanks
  16. N

    COUNTIFS help

    Hi: Can't you pull a pivot for this? Thanks
  17. N

    If function true/false value & hlookup

    Hi: Is this what you are looking for? Thanks
  18. N

    multiple cells containing specific multiple text; return value

    Hi: A Non-Array solution. =IF(SUM(COUNTIF($B2:$F2,{"green","bird"}),$B2:$F2)>=1,"Valid","") Thanks
  19. N

    Vlookup with duplicate in Table array

    Hi: Find the attached. Thanks
  20. N

    Vlookup with duplicate in Table array

    Hi: Pull a pivot. Thanks
  21. N

    IF functions to find text within a string

    Hi: Something like this? = if (Text.Contains("CAR",'Allocation dump required MP state'[ASSET_DESC]) then "CV" else "MC") Thanks
  22. N

    How to clear out an ASCII 1 from data string?

    Hi: May be something like this =SUBSTITUTE(D3,CHAR(160),,1) Thanks
  23. N

    Filter Out Multiple Criteria

    Hi: Its difficult to fully comprehend what your file look like without a sample. Have you tried advanced filter options? https://www.techrepublic.com/blog/microsoft-office/how-to-use-and-and-or-operators-with-excels-advanced-filter/ Thanks
  24. N

    Format a Text Box shape with Automatic Colour Gradient Stops

    Hi: This macro version will automatically adjust the axis when you make the changes to dates. Thanks
  25. N

    Format a Text Box shape with Automatic Colour Gradient Stops

    Hi: Find the attached. I have customised the axis Thanks
Back
Top