• 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. Sam Mathai Chacko

    VBA macro to combine 2 workbooks into 1 workbook

    And your final output would be one workbook with two worksheets, one for type 1 and the other for type 2? If yes, will each sheet have data for each client coming one below the other? to make the assumptions clear, would you be able to post a few samples of input and output?
  2. Sam Mathai Chacko

    VBA macro to combine 2 workbooks into 1 workbook

    And all of these are in one folder you say..?
  3. Sam Mathai Chacko

    VBA macro to combine 2 workbooks into 1 workbook

    Brian, does these workbooks follow any name pattern? How would you distinguish each client workbook, and each types per client?
  4. Sam Mathai Chacko

    Convert formulas into values (not continuous range)

    Great... for posterity, it would be nice if you can post the solution too, Jovica.
  5. Sam Mathai Chacko

    Modify my default sheet.

    Another example http://office.microsoft.com/en-in/excel-help/customize-how-excel-starts-HP005199391.aspx
  6. Sam Mathai Chacko

    Graph

    Don't understand exactly what you are looking for, but one of the lines in your sheet mentioned it only needed the Prj. Amount and the Value... so not sure what is required of the phases. Have a look at the file I've attached though.
  7. Sam Mathai Chacko

    Modify my default sheet.

    Did you not look at this? http://office.microsoft.com/en-in/excel-help/save-cell-styles-to-use-in-all-new-workbooks-HP001216733.aspx
  8. Sam Mathai Chacko

    Usuing custom Style in every sheet I open/create

    Just got this on search... http://office.microsoft.com/en-in/excel-help/save-cell-styles-to-use-in-all-new-workbooks-HP001216733.aspx
  9. Sam Mathai Chacko

    find data from certain category

    You can actually ignore the 'To' column. Assuming your 'From' and 'Percentage' data are in columns C and A, starting from first row, use this =INDEX($C$1:$C$7,MATCH(YourLookUpValue,$A$1:$A$7,1))
  10. Sam Mathai Chacko

    Multiple Value Lookup Function - Looking for Solutions

    Oops... sorry Narayan, I had the window open for a while and didn't realize you had posted.
  11. Sam Mathai Chacko

    Multiple Value Lookup Function - Looking for Solutions

    So what would be your output in this specific example? Just to understand your requirement...
  12. Sam Mathai Chacko

    Getting not only the value from a cel but also the color [and use it]

    Well, in that case, it's the VBA route, though I'd be more than happy to stand corrected.
  13. Sam Mathai Chacko

    How to separate numbers and words

    Good day to you too bobhc No argument. Completely agree :)
  14. Sam Mathai Chacko

    Question on array formula's

    Oh, OK Luke :), sorry for jumping the gun then. I was just trying to conform to Xiq's question about generating an array {1;3;1;3......} By the way, I did save you the parenthesis nonetheless ;)
  15. Sam Mathai Chacko

    Question on array formula's

    Luke, you probably meant ISEVEN(ROW(1:12))*2+1 to get that array
  16. Sam Mathai Chacko

    Question on array formula's

    Here's another so-called 'dirty' way, non-dynamic 3^MOD(ROW(2:14),2)
  17. Sam Mathai Chacko

    Getting not only the value from a cel but also the color [and use it]

    Not unless you use VBA, or, if the original cell is using a conditional format, use that same conditional format in the cell where you're using the VLOOKUP function.
  18. Sam Mathai Chacko

    How to separate numbers and words

    OK. In that case, your thread title is misleading. I think a more appropriate thread title would have been "Extract Numbers From Text". Wouldn't you agree? :)
  19. Sam Mathai Chacko

    How to separate numbers and words

    Yes, you got all the numbers together. So is that what you wanted?
  20. Sam Mathai Chacko

    Need macro

    Abhijeet, based on what Kris has written, it is imperative that the code is run from a code module, and not from a sheet / workbook code module. I've used Kris's code here (just changed the 2 minutes to 2 seconds cause I get bored easily ;))
  21. Sam Mathai Chacko

    How to separate numbers and words

    What should the output look like?
  22. Sam Mathai Chacko

    VBA code to select the latest date from a pivot table field

    Why do you want it to happen when you 'filter' something? Why not have a button, which when clicked, changes all values in Col F, where Col D = "C", to turn to that text ?
  23. Sam Mathai Chacko

    Using textbox in Excel

    For such charts, I'm afraid you'll have to use some alternatives like that. One another way is to equate the data-label value to a fixed cell. In that case, any value in that cell will be shown in the data-label. The other way is to use a Change event macro.
  24. Sam Mathai Chacko

    Cell lock enable after value entered

    Not sure what you meant. You mean you want the code posted here? If yes, here you go Dim blnUnlockedAllCells As Boolean Private Sub Worksheet_Change(ByVal Target As Range) Const RangeToLock As String = "A2:D1000" '<< adjust to suit If Target.Cells.Count > 1 Then Exit Sub...
  25. Sam Mathai Chacko

    Using textbox in Excel

    Just right-click on the cell and format it with the text as you want. The actual value of the cell will be some number. But the format will be the text you want to display.
Back
Top