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

    countifs with cell color as a condition

    Is there any criteria using which you are marking those cells as Green? If there is a specific criteria then, you can use that criteria along with Countifs function to get the value in C7, E7, G7 and I7
  2. Ramesh

    excel formula help

    Agree with Deepak. There is no formula driven way of counting the cells based on the interior color. You might be using some criteria, using which you are highlighting those cells in Red color, use the same criteria in COUNTIF or COUNTIFS functions to count the cells
  3. Ramesh

    excel formula help

    I have done this using a user defined function in excel Dim cell As Range Dim colorcount As Integer Function retColorcodeCount(rng As Range, colorcell As Range) colorcount = 0 For Each cell In rng.Cells If cell.Interior.Color = colorcell.Interior.Color Then...
  4. Ramesh

    Year Formula Error

    Hey Adam, Not sure why and how.. when I opened your worksheet on my computer and run the formula it evaluated fine. Please check if the Formulas => Calc mode is set to auto on you Excel application.. I'm here by sharing the file, where the formula got evaluated correct. Thanks, Ram
  5. Ramesh

    Data validation

    Here is the updated file..
  6. Ramesh

    VBA VLookup, Refer to Named Range Compile Error

    Hi Emeng, The only issue, I have noticed in the above code is, you are trying to assign a value to a variable using set keyword, which is not required..hence you are receiving this error.. Try replace the following piece of code: Set myVLookupResult =...
  7. Ramesh

    Automatic recalculation problem

    Is there a typo again in your code pasted previously.. The code given by you is: Worksheet("Sheet1").Range("A53").Formula ="=MATCH(A52,AM6:AM50,0)" The correct code is: Worksheets("Sheet1").Range("A53").Formula ="=MATCH(A52,AM6:AM50,0)" please check the above and let us know..
  8. Ramesh

    Hit Enter button Command in VBA at specific time

    You can use Application.OnTime() method of VBA..but in order to have this method executed, you need to have that workbook where this code is written is in opened or using the Task Scheduler of windows open the file at specific interval and call the method to execute your code under the...
  9. Ramesh

    Traffic lights

    One way you can achieve this is by typing in the character small l i.e. the alphabet L in lower case and change the font name to Wingdings You can change the font color and create a hyperlink etc on this text.. Hope that helps!!
  10. Ramesh

    Llistbox Data Edit from Other userform

    Hi, The reason why you are getting this error is because your listbox is populated with the data using the Rowsource property.. To update the information on the listbox, you need to update the data available on the source worksheet .. Also when you have duplicate name values in the source...
  11. Ramesh

    Help on understanding Multiple Linear Regression in Excel

    Here is the numerical summary of your data:
  12. Ramesh

    Help on understanding Multiple Linear Regression in Excel

    Hi, This seems to be that you are trying to perform multiple linear regression on your data ... Here are the answers: 1. I have computed the MEAN, MEDIAN, MAXIMUM and MINIMUM. Kindly confirm if I got the formulas right? Ans: Yes. These are calculated correctly. I have cross checked the same...
  13. Ramesh

    Help with Pivots

    See the attached file.. hope that helps!! Please refer to sheet 2 for the calculations...
  14. Ramesh

    VBA Code should resume the next step in case of any error

    I have take the help of : For skipping the error: On Error Resume Next See the attached hope it helps..
  15. Ramesh

    Copy same formula into other columns

    see if this helps..
  16. Ramesh

    Copy same formula into other columns

    Only other suggestion i can give here is, copy the formula using formula bar and edit the destination cell and paste it.. If the above still does not answer your query, you can help me with the screenshot or sample file where this issue can be noticed..
  17. Ramesh

    Copy same formula into other columns

    Hello Neeraj, Refer to the following URL to get an understanding on Cell referencing in formula's that helps in addressing this issue: https://www.gcflearnfree.org/excel2016/relative-and-absolute-cell-references/1/ Thanks, Ramesh
  18. Ramesh

    Find a particular number into Formula

    Hi Neeraj, On the find and replace dialog box, try changing the LookIn option to Values..default value is set to Formulas..hence it is not finding the same.. Click on Options >> button to expand this dialog box Hope this helps
  19. Ramesh

    Pivot column value not visible and conditional format

    Hello Thomas, Not sure how can we get those A's and P's using a pivot table.. I have updated your file with a Summary worksheet where I have populated the values using Index & Match formulas.. On the source data..I have added 2 columns one contains the year and 2nd contains the concatenation...
  20. Ramesh

    Using sheet name as part of a formula

    True Brian..as the cell address has been placed in the double quotes, it would not follow the automatic cell reference update practices (absolute / relative / mixed) when you copy/paste the formula..tht's the only trouble you have to experience :)
  21. Ramesh

    Using sheet name as part of a formula

    you can use the following formula in cell B5 =INDIRECT(A5&"!G21") The same is applicable for the next one too
  22. Ramesh

    VBA coding for Filters

    see if this helps..
  23. Ramesh

    VBA coding for Filters

    Here is how this template has been designed.. I have created drop down lists on Companies list worksheet (I have highlighted these in yellow color) using dynamic named ranges created in Lookup worksheet One you select the sector, the corresponding Region names populated, Once the region is...
  24. Ramesh

    VBA coding for Filters

    see if the attached file helps..
  25. Ramesh

    Help with VBA Consolidate Code

    Here you go.. Sub Consoldiate() 'Please add a reference for "Microsoft Scripting Runtime" 'By clicking on Tools => References, scroll down to select the above library 'Variable decleration Dim fd As Folder Dim fsoobj As Scripting.FileSystemObject Dim file As file...
Back
Top