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

    I need help with =INDIRECT

    Hi, I think you are looking for formula to find rows that are bold (dynamically), and return those rows. AFAIK, there is no formula to find if the cell is bold or not. And, unless you figure out this, you cannot return those rows. Now, you have the solution in hand, by letting us know, on...
  2. P

    How to identify indian holiday dates in business data in one shot

    Hi, Alternatively, you can use vlookup() and to supress #N/A pass the result with IFerror(). example: =IFERROR(VLOOKUP(A7,'2013holiday'!A2:C126,3,0),"") Regards, Prasad DN
  3. P

    EOSB CALCULATION

    Hi, Use this formula: =IF(D13>5,((5*(E13/2))+(D13-5)*E13),(D13*E13)) Attached is the file. Regards, Prasad DN:
  4. P

    Excel question with Alphabetic characters

    Hi, My mistake.... :( I did not notice the braces ( ) . It is indeed giving correct result "A" now. I am really sorry for my above post. BTW, yes it was showing correct results without 1+ as well. Regards, Prasad DN
  5. P

    Download files from URL

    Hi Pegaso, Pls share the solution you have when name of files are known. We can try to tweak the same to your requirements, rather than recreating some scratch. Regards, Prasad DN
  6. P

    How to find the first number in a substring and display all values after the number?

    Hi, Can you post some real data ... I was thinking of alternate formula to combine last 4 columns where you have data.. Regards, Prasad DN
  7. P

    Excel question with Alphabetic characters

    Hi, I guess the earlier formula without 1+ worked perfectly when I was testing and after including 1+ it was showing incorrect results! Am I missing anything? I tried with B1 cell value AA and B2 cell value B, expected result is A, but surprisingly it is giving C. I also changed the...
  8. P

    Searching a date range & returning multiple results

    Hi, Yes, DATES in the formula are names and not functions. Is it possible to upload the file? could be something to do with format of dates. regards, Prasad DN
  9. P

    Difference Between Sheet 1 & Sheet 2

    Hi, I just opened your file, can you clarify few points: 1. you have multiple entries with same booking number in sheet1. does in sheet 2 also you get multiple entries or single? 2. What about those records in Sheet1 without booking number. Regards, Prasad dN
  10. P

    Index Match with Dates and Other Multiple Criteria

    Hi BCObrien, Use this formula in B28: =SUMPRODUCT(($A$2:$A$22)*($B$2:$B$22=$A28)*(B$25>=$C$2:$C$22)*(B$25<=$D$2:$D$22)) You can drag to right and down to see results of all the dates and employees. One catch: You should not have blank cells in end date column like position 19 and 20...
  11. P

    Index Match with Dates and Other Multiple Criteria

    Hi Hui, I believe the OP wants formula to get the position values in payperiod table (rows A28 and down). Regards, Prasad DN
  12. P

    Difference Between Sheet 1 & Sheet 2

    Hi, Pls use Vlookup formula. regards, Prasad DN PS: For more details on vlookup(), search at top right box.
  13. P

    Searching a date range & returning multiple results

    Hi, I was not able to recall that small() is the opposite of large(), in the attached file of mine, replace in formula, Large to small. You will get the result in ascending order ;) Regards, Prasad DN
  14. P

    Searching a date range & returning multiple results

    Hi, Pls see if file works, the results are in descending order. :( Regards, Prasad DN
  15. P

    At which item in a series, total becomes greater than a number

    Hi Pls help me understand why you have formula referring to $I$4 and also when I apply the formula with 500 in stock, it shows 150 days cover, while it should be 144! Regards, Prasad DN Edit: $I$4 to $I$2 resolves the issue.
  16. P

    At which item in a series, total becomes greater than a number

    Hi if the stock is less than first month demand, it shows N/A instead of value. Like if stock is 50, it should show 15 days, for the given situation. Regards, Prasad DN
  17. P

    At which item in a series, total becomes greater than a number

    Hi, Assuming you have 30 days in a month, i have made use of helper rows to achieve your requirements. See if it helps. The formula are very long.. and sure you can work it out to make short. And i have also used different formula for first column and for rest of columns same in two helper rows...
  18. P

    Calculating in a Pivot Table

    Sorry, I did not understand you. :( Are you looking to show graph with date range July 2010 to June 2011, and monthwise? Regards, Prasad DN
  19. P

    hi, need a help on setting if criteria on specific date

    Hi, You could do this in many ways. here I have mentioned three methods: 1. enter the cut off date (04/01/2015) in lets say F1 cell and then use the below formula and drag down to your required rows: =IF(C2<$F$1,4,6) 2. using datevalue(): =IF(C2<DATEVALUE("04/01/2015"),4,6) 3. using date's...
  20. P

    vlookup in Matrix

    :)
  21. P

    Need help on the enclosed sample data

    Hi, Alternate solution: A) Sort the data with: 1. level 1 PDD_num (A-Z) and 2. level 2 Insert date column (Z-A), 3. on the dialog box, select treat anything looks like number as number. This (3rd step is required in this case as the data and time is stored as general format.) B) Apply a...
  22. P

    Calculating in a Pivot Table

    Hi, Kindly upload sample file with sample raw data. And manually put expected output. regards, Prasad
  23. P

    Sum rows based on criteria on both columns and rows

    hi, See if this works. Regards, Prasad DN
  24. P

    to come cell value in textbox as it is

    Hi, You can store the lookup value in one variable (to avoid multiple times lookup function) and check if its a date, if yes apply the formatting and if not show as it is. see below code: If VBA.IsDate(Range("A1").Value) Then TextBox1.Value = VBA.Format(Range("A1").Value...
  25. P

    vlookup in Matrix

    Oops! some changes in formula is required: Pls use: =IF(IFERROR(IF(IFERROR(VLOOKUP(LEFT(B9,1),_S1,1,0),"")=LEFT(B9,1),VLOOKUP(MID(B9,2,LEN(B9))/1,_p1,1,0),IF(IFERROR(VLOOKUP(LEFT(B9,1),_s2,1,0),"")=LEFT(B9,1),VLOOKUP(MID(B9,2,LEN(B9))/1,_p2,1,0),NA())),"")="","",B9)
Back
Top