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

    How to capture data from multiple columns

    Hi Kumar, To get the sum of TDS for each month, use the following formula. {=SUMIF(Sheet2!$A$2:$A$1002,B12,Sheet2!$C$2:$C$1002)}
  2. srinidhi

    Copy data from one workbook to another using vba

    Hi, I hope the following code helps you. Sub copyrange() Dim a As Workbook Dim b As Workbook Open both workbooks : Set a = Workbooks.Open(" path from copying book ") Set b = Workbooks.Open("C:\Users\Siddarth\Desktop\Test 0.xlsm") 'Copy what you want from a: a.Sheets("name of copying...
  3. srinidhi

    How to insert a sub-sheet.

    Instead of inserting sheet21 and then dragging it. insert a new sheet between sheet4 & sheet5, it will show as sheet21. All sheets are normal sheets, there is no sub-sheet in excel
  4. srinidhi

    Two-way drop down boxes

    Please upload the excel
  5. srinidhi

    24 hour availability schedule

    Check the data & window tab, It has been done with REPT Formula & CF. hope this is what you are looking for
  6. srinidhi

    compare 2 columns in excel.

    Viwanou, If you are sure of the first 3 or 4 letters, you can use vlookup with the starting 3 words & you will get the results when the starting words match in another list. This is a common problem most of use face in worklife. VLOOKUP(LEFT(A1,3)&"*",B:B,1,0) VLOOKUP(LEFT(cell,first 3...
  7. srinidhi

    Generating report based on multiple dropdown selection

    The best way to generate report for your scenario is with the help of Pivot Table. If you are using 2010 & above pls use slicers. The attached file is updated with the pivot. Hope this help you
  8. srinidhi

    SUMIF - Alternate Columns

    One more solution, in E Column add ADD in the heading & sum Number Of Head Teacher+Number Of Teacher. In your sum product formula =SUMPRODUCT((A2:A12=H1)*(B2:B12=H2),IF(H3="All",E2:E12,IF(H3="Teacher",C2:C12,D2:D12))) Hope this helps
  9. srinidhi

    SUMIF - Alternate Columns

    If you are using excel 2010, use the pivot table along with slicers, it will easy & less time consuming than an array formula.
  10. srinidhi

    Ribbon DatePicker Calendar Control For Excel 2007-2010

    Thanks, It helps a lot in my work..
  11. srinidhi

    Hidden columns must stay hidden.

    Just select the columns you want to copy, press f5 function key, special & select visible cell only, now copy your data & when you past it, the details of the hidden column will not be pasted.
  12. srinidhi

    How to Find Formula Syntax in Excel

    http://www.techonthenet.com/excel/formulas, this has what you have asked for but not in a consolidated sheet
  13. srinidhi

    Lookup values in a multiline cell

    Thanks Xiq, will get back to the forum if I am not able to code the VBA Part
  14. srinidhi

    Lookup values in a multiline cell

    Thanks Xiq you formula works. Is it possible to get the result data one below the other instead of the data with &. Sajan, Cell C has more than 5 data & the data is huge upto 5000+ rows.
  15. srinidhi

    Sorting tables horizontally

    Knochel, You have already posted the same question .
  16. srinidhi

    Identifying active months within a date range, based on start and end date

    =IF(AND(c1>=a1,c1<=b1),"yes, worked in August 2013", "no, did not work in August 2013") If you want to include 1st & 31st AUG as well, use this formula
  17. srinidhi

    Identifying active months within a date range, based on start and end date

    I guess you are looking for a formula to match both on the start date & End date. In c1 please enter the last date in august. Assuming the Start date is in A1 & end date is in B1 =IF(AND(C1>A1,C1<B1,"yes, worked in August 2013", "no, did not work in August 2013")
  18. srinidhi

    Lookup values in a multiline cell

    Hi Xiq, please find attached the excel file.
  19. srinidhi

    AB12.34 - How to extract "AB", "12" and "34" separately

    Narayan is truly an excel Ninja. Thanks I learnt a lot today from you.
  20. srinidhi

    Lookup values in a multiline cell

    I need to lookup values from a cell to another Multiline cell. ex: A B ID Name 001 ARUN OO2 Pawan 003 Sunil In C, I the ID, but the ids are in a single cell. C2 has ID number 001 & C3 has Id number 002 & 003 one below the other. In D, I want to...
  21. srinidhi

    AB12.34 - How to extract "AB", "12" and "34" separately

    Ok got your point, sorry I did not read it properly. your formula extract the numbers after that go to data Data>Text to column>Delimted>others, enter . & click on Finish. now you data is spread in 2 cells. Use the formula given above to extract the text.
  22. srinidhi

    AB12.34 - How to extract "AB", "12" and "34" separately

    I did not understand why you want 3 separate formulas, You need to extract the text in one cell & the numbers in another. To extract the text in a cell, use this formula. =LEFT(A1,MIN(FIND({"0","1","2","3","4","5","6","7","8","9"},A1&"0123456789"))-1)
  23. srinidhi

    Sorting horizontally in tables

    To sort horizontally, you need to convert the Table to a normal range of data. As the option is not available in Table
Back
Top