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

    Copy Data from 5 files to one file and copy it to the next spare row using VBA

    Hi Tom, Please upload the file with the Macro, it should be a .xlxm file
  2. K

    Cascading Data Validation with Dynamic Named Ranges

    Hi Allyson, did something similar here, have a look it might be what you are after http://chandoo.org/forum/threads/multiple-dependencies-for-a-drop-down-list.13889/#post-83051
  3. K

    Copy Data from 5 files to one file and copy it to the next spare row using VBA

    Hi Tom, Please upload the file it would make it easier to solve the problem as I am not sure when you are working whit any particular workbook kanti
  4. K

    Consolidate data from different excel files using macro

    Hi Pooja, Glad it worked, if you are asking about the code I added, Set rTable = Sheets("MasterData").Range("A1").CurrentRegion Set rTable = rTable.Resize(rTable.Rows.Count - 1) Set rTable = rTable.Offset(1) rTable.Clear You will note that I have a small sub GetRange2Clear() called in...
  5. K

    Transferring Data

    @Arvennis, Sorry that I did not upload the file and that I missed your post. Here is the file, let me know if you need more help
  6. K

    Consolidate data from different excel files using macro

    Hi Pooja, thank you for the file, here is the file with a change to the macro, the macro clears the whole table before it starts with the loop. Please check and let me know if it is OK kanti
  7. K

    How to select Multiple columns in a table using Macro

    Hi Put a comma between your Headers as such: Range("Table1[aa],Table1[bb]").Select regards kanti
  8. K

    Consolidate data from different excel files using macro

    Hi Pooja, Can you upload the file with the macro, so that i can identify the range that needs to be cleared, before the data is copied from the other file.
  9. K

    Consolidate data from different excel files using macro

    Hi Pooja, try this, I have added a line after the Loop statement Loop Range("B2").select 'activates sheet of specific name Worksheets("Dashboard Project view").Activate Exit Sub kanti
  10. K

    How to use Pivot Tables, better, when your original cells have more than one value

    Hi Johan, I am not sure that you can do it, the closest you can get is to filter the Rows, with Contains... and if you then enter Eurasia you will get only those with Eurasia
  11. K

    Non - Manual Formula Fill

    Happy to oblige
  12. K

    Non - Manual Formula Fill

    Hi AZExcel, You should convert the input area to a table, but before you that put Headers in al columns. That would force the formulas into new rows that you enter kanti
  13. K

    Transferring Data

    Hi Arvennis, In the attached spreadsheet is an example of finding the address for a formula in VBA, you can adapt it to suit your purpose. If you need more help with this let me know. kanti
  14. K

    What is this Poll and what is used for?

    Hi Hui, I did not start the poll, I just clicked to open the thread and that screen popped up, did I do something wrong, Hit or Click something? cheers & thanks kanti
  15. K

    Macros help

    Hi Minhaj, Here is the code to find an address and use it in a formula. Sub BuildFormula() With Sheets("Mech") Set rFound = .Columns(4).Find(What:="aaa", After:=.Cells(1, 4), _ LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, _ SearchDirection:=xlNext...
  16. K

    Selecting and putting data in columns

    Hi Tazz, Looked at your file, is the BEFORE one set of data, and how do you differentiate between what goes where, in other words how do you decide that any particular cell will go into another cell on AFTER. You have all the colours on AFTER, how do you decide what colour any of the cells is...
  17. K

    Int() formula not giving correct answer.Showing Int(9) = 8

    is C92, input or a calculated result? If calculated what are the inputs and formula that give the resulting 9
  18. K

    formula needed to calculate interest

    The amounts that you are calculating the interest on, is that a transaction or is that a balance? If it is a balance then the calculations are correct. Does the interest kick-in from the day of the transaction or after it becomes overdue? So you may have incurred the debit today, but no...
  19. K

    formula needed to calculate interest

    That has been accounted for in my calculation, but let us have the charges as per the bank otherwise I cannot give you an answer. Have you confirmed with the bank the calculation, I also note that there are blank for certain Credit entries and not for others, so without a full picture, I cannot...
  20. K

    formula needed to calculate interest

    Where does this number come from, how is it calculated and PLEASE do not tell me it is a bit off, it means nothing
  21. K

    formula needed to calculate interest

    That does not help, we need to know what the numbers are that are not the same, anyway look at the file I posted
  22. K

    formula needed to calculate interest

    Hi, Please check out the attached file, you should have adapted the formula I posted earlier and applied it to your problem!
  23. K

    formula needed to calculate interest

    Hi Chaptzem1, I need to understand your worksheet, do you have the actual amounts charged by the bank? it would be good to know what the correct result should be.
  24. K

    formula needed to calculate interest

    Hi Chaptzem1, Have you checked with the bank on how they charge the interest, to my knowledge interest when charged is added to the account and this should occur at least once per year, or 12 times or 4 time etc. Once the interest is charged it is added to the capital and then interest is...
  25. K

    formula needed to calculate interest

    Try this formula to get 366 for leap years and 365 for others, it assumes the date is in A1 =IF(MOD((YEAR(A1)),4)>0,365,366) regards kanti
Back
Top