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

    Sir Narayan ! 8000 +

    Congrats @Debraj ..For sharing the same platform with @NARAYANK991 :) Its an honour for me..
  2. Debraj

    Stop counting where 0 is found in a row out of 20 cells

    Hi KapardhiSarma! Can you please check with this one too.. =MATCH(0,$A2:$V2,0)-1
  3. Debraj

    Why the match returns #NA ?

    Hi Aamir! If your Project Sheet, is like below.. then your formula will work fine.. Data should be sorted A - Z, And only one character should be in Column A..
  4. Debraj

    Duplicate Occurence Number Count

    Hi Sunil, here another approach.. using Ctrl + Shift + Enter =SUM(IF(A2:A22={"F2","F8"},1/COUNTIFS(B2:B22,B2:B22,A2:A22,{"F2","F8"}))) + Point.. If Invoice Number are in AlphaNumeric.. Still it will Work.. - Point.. In case of blank INVOICE #, it will fail.. unlike @Somendra Misra 's...
  5. Debraj

    DashBoard to have trend in Excel 2007

    Hi Bhineet.. Can you please upload a sample file with expected output.. BTW, Conditional Formatting with ICON's, never works with Relative Reference. By seeing your upload, we may able to create some workaround..
  6. Debraj

    PivotTable problem i think so

    Hi getpras.. Pivot table are always used for NUMERICAL data analysis and crunching. In case of crunching with TEXT data, you have to used FORMULA based approach..
  7. Debraj

    PivotTable problem i think so

    Thank you.. I also think, pivot table problem.. Do you want us to do anything.. !!
  8. Debraj

    Avoiding circular reference

    Hi, Welcome to the forum.. In this specific case, You have to use a helper column, lets say D, in this column use your formula. "=if (B3>C3,B3,C3)", coz, excel need one physical area, to compare Col C, with Col B, BTW. to get the value you are using a UDF, and You can change your UDF, to get...
  9. Debraj

    Using a Match formula

    Hi Lily.. As per your experience.. I guess you have already realized. its working the way you want to.. :( Let me elaborate.. =IF($C2<$D$1,0,MATCH($C2,$D$1:$O$1,1)) As D1 is fixed.. so its doesn't matter.. all other columns in D1:O1 is less than or greater than C2.. So 1st part not so...
  10. Debraj

    VBA snippet to refresh pivotTables one by one

    Hi Karthik, Just a blind guess. Did you tried.. ActiveWorkbook.RefreshAll Caution: It will refresh all the Data connection also in the sheet.(if you have any.. :))
  11. Debraj

    Extract string

    Hi Prtucale.. Just in case.. if you want to extract the nth word between a specified delimeter.. try this.. =TRIM(MID(SUBSTITUTE($A1,":",REPT(" ",99)),((2-1)*99)+1,99)) where Delimeter is in RED, and nth Word is in BLUE.. Increase this 99, in case of very long word..:)
  12. Debraj

    Open the Excel sheet with file Name

    Hi Shahul.. Let me know, if you need further details.. Sub OpenFile() 'Opens a file called TESTFILE.XLS from same folder as this workbook Dim fPath As String Const fName As String = "Test1.XLSx" fPath = ThisWorkbook.Path & "\" & fName 'Check if file path is legit...
  13. Debraj

    Sorting data based on column value

    Can you please upload a sample file.. with expected output.. With this small data view, its really hard to decide :(
  14. Debraj

    Open the Excel sheet with file Name

    Pass it to LUKE.. :)
  15. Debraj

    How to extract all email ids of a particular company from a given list

    Hi VDS.. Did you tried to drag it.. toward Right side.. :(
  16. Debraj

    Open the Excel sheet with file Name

    Hi Shahul.. Just a lil modification Luke's Code.. :) fPath = ThisWorkbook.Path & "\" & fName
  17. Debraj

    Find next match+unique users

    Thanks for the feedback.. :)
  18. Debraj

    Find next match+unique users

    Option Compare Text Sub OnlyReportID() Dim sourceRange As Range, CriteriaRange As Range, Output As String Set sourceRange = Range("A1:D1000") ' Set Source Area Set CriteriaRange = Range("G7:H7").CurrentRegion ' Set Criteria Area With sourceRange For I = 2 To...
  19. Debraj

    How to extract all email ids of a particular company from a given list

    In C2. Use CSE formula as.. =IF(ISERROR(INDEX($B$2:$B$126,SMALL(IF(ISNUMBER(SEARCH(C$1,$B$2:$B$126)),ROW($B$2:$B$126)-1),ROW(A1)))),"",INDEX($B$2:$B$126,SMALL(IF(ISNUMBER(SEARCH(C$1,$B$2:$B$126)),ROW($B$2:$B$126)-1),ROW(A1))))
Back
Top