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

Recent content by Jai9

  1. J

    Getting duplicate results when using Index(Match()) in connection with Small()

    Hi, Maybe you are looking for something like this. http://chandoo.org/forums/topic/help-for-small-formula-index-and-match Jai
  2. J

    plz help me

    Hi, Try =IF(LEFT(A1,2)=08,REPLACE(A1,1,2,""),A1) Jai
  3. J

    Undo options - After Running a macro

    Hi Dhamo, Unfortunately you can't undo changes made after running a macro. Jai
  4. J

    VLOOK UP MATCH

    You are welcome Mohan !! Jai
  5. J

    VLOOK UP MATCH

    Hi, Try, =IFERROR(INDEX(Sheet9!$A$1:$E$7,MATCH(Sheet8!A2,Sheet9!$A$1:$A$7,0),MATCH(Sheet8!B2,Sheet9!$A$1:$E$1,0)),0) You have to replace Sheet8 with Sheet1 and Sheet9 with Sheet2. Jai
  6. J

    Nested if function

    Hi, Try, =IF(C7="","111 Winner",IF(C7="L",C6,IF(C7="W",C7))) Jai
  7. J

    Nested Index Match with multiple criteria - possible?

    Hi, Your first 3 sheets in Sheet1, Sheet2, Sheet3 and result in Sheet4. With the data starting in cell A1 of all sheets, =SUMIFS(Sheet1!$B$2:$B$8,Sheet1!$E$2:$E$8,Sheet4!A2,Sheet1!$F$2:$F$8,1) +SUMIFS(Sheet2!$B$2:$B$4,Sheet2!$E$2:$E$4,Sheet4!A2,Sheet2!$F$2:$F$4,1)...
  8. J

    Simple error message if cell is blank and worksheet is saved

    I'm sorry. Not sure why the code aligns to left after posting.
  9. J

    Simple error message if cell is blank and worksheet is saved

    Hi Abbas, DO NOT TRY THIS CODE ON YOUR SHEET. I am still learning VBA and came up with this. This gives the required result to an extent but looks like I have to click at leat 4-5 times on YES or NO button to get rid of the message box. Also, even when I select YES, it doennt seem to save...
  10. J

    How to define cell value for use in vlookup formula

    Hi, Shouldn't it be myval instead of myisn? Try, = Application.WorksheetFunction.VLookup(myval, Range("N:O"), 2, 0) Jai
  11. J

    Matching row numbers

    Hi, I have the combo box in D13 referenced to cell A12. The input range for combo box is in A13:A17 and the actual data in B13:C20. Try, =INDEX(B13:C20,MATCH(OFFSET(A13,A12-1,0),B13:B20,0),2) You have to change range references to suit your needs. Jai
  12. J

    Same formula, different results

    Hi, Most likely reason is H7 and H8 do not hold the same value. H8 might have an extra space or a character. Try H7=H8 in any other cell and see the result. If they are same then result would be TRUE else FALSE. Jai
  13. J

    Subtotal Formula

    Hi Joe, You are welcome!!! I am sure someone will come along and take care of the second question. Jai
  14. J

    Subtotal Formula

    Hi, Try this. =SUBTOTAL(9,OFFSET(A1,1,0):OFFSET(A1,10,0)) This would add A2:A11. Not sure about second question though. Jai
  15. J

    How to get the counts by datewise

    Hi, Not sure how you are getting the counts as you mentioned in the post. When I tried, I got the below counts. No. 1 2 3 4 5 6 7 Request:45666 208956 201212 206878 207595 204568 203225 Date: 1-Dec 1-Dec 1-Dec 2-Dec 2-Dec 2-Dec 2-Dec Silver: 1 3 3 3 5 0 Gold: 0 0 1 0 0 1 1-Dec-12...
Back
Top