• 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

    Extract Year and Month and format as YYYYMM

    Hi.. did you tried.. =TEXT(A1,"YYYYMM")
  2. Debraj

    How to get Values button into the Column Field on Pivot table field list

    Hi gtothek! Thats secretly hidden in Pivot table.. :) whenever you will add more than one columns data in VALUES section.. by default.. VALUE section inserted in Column Section.. Give a try..
  3. Debraj

    automation /VB code to extract data from a list table

    Hi Birinder.. Can you please upload a sample file.. Infact.. double click on any customer name .. will do the same for you.. extract the customer data for the same.. I know.. Pivot Table already have that feature to extract each customer's data separately.. Play with this feature.. no VBA...
  4. Debraj

    Interactive Table in Excel (Change Values based on dropdown list)

    Hi Somu.. Just for sharing purpose.. :) =INDEX(($A$2:$D$13,$A$16:$D$27,$A$30:$D$41),MATCH($H$8,$A$2:$A$13,0),COLUMN(B1),ROW(A1)) Index function also has a great rarely use parameter available.. :) with the help of perfect data structure in the above case.. you can use a single formula for...
  5. Debraj

    Clearing filter on a Slicer field removes Top 10 filter on the same field too

    WOW.. nice idea .. thanks for sharing.. :)
  6. Debraj

    Change Tab Size in Excel 2013?

    Hi Matt.. I tried atleast 4-5 times.. but not able to decrypt right now.. Still give a try.. ** Backup Registry strongly recommended Run > Regedit > HKEY_CURRENT USER > Control Panel > Desktop > WindowMetrics check for Binary ScrollWidth (if not found you can create Right Click > New >...
  7. Debraj

    How to create checkbox in a drop down list?

    Hi hnd.. any sample file .. for your imagination .... are you talking about user form or excel sheet.. Dropdown with multiple choice.. I think.. List box & user form is required in this case..
  8. Debraj

    Clearing filter on a Slicer field removes Top 10 filter on the same field too

    Hi Vivek.. Click on "Clear filter from Client" & Clear Filter in Slicer section are same thing.. You cant set Clear filter in Slicer.. but not in Actual Pivot Table..
  9. Debraj

    Nested IF, AND formula

    hi gtothek! Can you please upload a sample file.. with manual expected result.. I have a doubt on the Start Month structure.. Its may be just a TEXT. May be we can reduce the formula length if sample available..
  10. Debraj

    Calculate Months from number in range

    Hi Prashant.. try this.. in c2 use formula as.. =DATE(YEAR(A1),MONTH(A1)+B1,DAY(A1))
  11. Debraj

    Multiple Selection in Dropdown

    Hi Nipendra, I copied the code form Debra's site.. I think, that' the actual origination of this technique. I Just added a single line.. Please check the attached.. Option Explicit ' Developed by Contextures Inc. ' www.contextures.com Private Sub Worksheet_Change(ByVal Target As Range) Dim...
  12. Debraj

    Change colour of bar charts based on values

    Can you post a sample file.. with detail explanation.. please..
  13. Debraj

    Sorting Month (MMM) within Slicers

    Hi Vivek.. Close Months are actually TEXT, not DATE.. In the pivot table Add Close Date in Rows Section.. (just for a while..) In the Row label section.. GROUP "CloseDate" with Month. Now remove the Close Date from the ROW Section.. Now Insert Slicer.. for Close Date.. You dont need those...
  14. Debraj

    Change colour of bar charts based on values

    Welcome mikelowski.. Please check this one.. yes VBA approach.. hope you can manage to adapt it.. otherwise let us know.. http://chandoo.org/forum/threads/chart-conditional-formating.13780/
  15. Debraj

    Subtracting date and time

    Hi Manish, I think, excel is giving you correct result.. Just you need to change the Number Format, so that you can view the actual output.. Try to convert result cell as "DD HH:MM:SS" or use below formula.. =TEXT(B1-A1,"DD hh:mm:ss")
  16. Debraj

    Minute Numbers to be automatically changed to Hours until the last cell

    or.. in A1.. =TEXT(TIME(0,ROW(),0),"h.mm")
  17. Debraj

    Two range lookup with two diff if between variables

    Hi Melissa, Welcome to the forum. If you change a lil bit in your data, it will be lot easier for you.. check the attached.. Few basic changes has been done.. Let us know.. if this is working for you.. =INDEX(C10:H15,MATCH(D2,B10:B15,1),MATCH(D3,C9:H9,-1))
  18. Debraj

    Search the charector and provide the respective cell

    Hi Guna! Try this too.... =LOOKUP(2,1/ISNUMBER(SEARCH(ListOfNames,B2)),ListOfNames) Where listOfNames is range ($A$2:$A$4) from where you want to search for the test in a sentence.
  19. Debraj

    Excel Query about Index and Match Function

    Hi Kumar.. Did you tried.. * Copy the formula from C3. * paste the formula in anywhere.. except C3. What you are trying.. is copying and pasting the formula in same cell (or including the same cell) avoid it.. it will work.. infact.. you can drag also..
  20. Debraj

    Rotate a shape

    Hi Karthik.. Sorry.. as I was lil bit busy.. Can you please wait till weekend..
  21. Debraj

    Please help me for PDF to EXCEL converter.

    In case of software.. try.. It works well for me in most of the cases.. ABBYY FineReader
  22. Debraj

    Rotate a shape

    Hi karthik.. Check this one.. Click the shape to rotate.. Courtesy: http://www.mrexcel.com/forum/excel-questions/593944-visual-basic-applications-shape-rotation.html
  23. Debraj

    Due date Monthwise reqd

    Hi Shahul.. Is this what you are looking for.. Then go for.. Pivot table Wizard.. Multiple Consolidation Range.. Will elaborate.. if this is works for you..
  24. Debraj

    Payback period calculation where there is quarter also mentioned

    Hi @paradise ! Can you please check the formula.. below.. Is this is correct way to decide "PayBack Period"!! I dont have any Financial knowledge.. :( In B9, use CSE Formula as.. ="Qtr " & MATCH(0,MMULT(N(TRANSPOSE(COLUMN(CashFlow))>=COLUMN(CashFlow)),TRANSPOSE(CashFlow)),1) Let us know.. if...
  25. Debraj

    error message

    Without loop or structure of the macro, its hard to decide.. Can you please post a sample file with macro.. upload only few lines for debug..
Back
Top