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

    writing macro that lives the formula inside the cell

    thanks. i wasnt so far. i just dont know to write the last formula with the "rc" operator. and the truth that i am still dont get the idea with this. its work perfect as i wish. thank you very much.
  2. A

    writing macro that lives the formula inside the cell

    hi there, i wrote a realy simple macro that multiply cells and lives a formula inside the cell. same row , different column. the life was too easy. but the real problem is that i need the macro to be dinamic. my meaning is: the macro needs to identify the number of the column by the column name...
  3. A

    error message

    hi, i have an error message in excell when i am trying to run a macro: "Excel ran out of resources.... how can i solve it. i have macros with loops on 5'000 lines. any Suggestions??
  4. A

    move filter sign from a pivot table

    hi, i have a pivot table that i want to ove into p.p. the problem is every column has a filter sign. how can i move the filter sign without lose the tital???
  5. A

    shortening if statement [SOLVED]

    lohith, your idea work very good. thanks to everybody...
  6. A

    shortening if statement [SOLVED]

    hi narayank the code you suggest make an error "type mismatch" on this line: x = Array(30, 36, 45, 50, 54, 63, 69, 91, 94, 133)
  7. A

    shortening if statement [SOLVED]

    my code runs with vlookup see below: Sub expances_sheet2() Dim cell As Range Dim i As Integer ' Workbooks(".xlsx").Sheets("").Activate Workbooks(".xlsm").Sheets("").Activate On Error Resume Next For i = 6 To 138 If Not i = 30 Then If Not i = 36 Then If Not i...
  8. A

    shortening if statement [SOLVED]

    hi, i have code with 'for' loop 6-138 i want the loop to ignore 10 numbers. i know that i can write if not statement to ignore one number. how can i ignore 10 numbers in one if statement? i attach part of the code to explain my question. the code runs on column with loop on the cells Sub...
  9. A

    code to verify if workbook is open

    hi, i upload the workbooks to rapidshare. https://www.rapidshare.com/#myrs_filemanager/file/0 notice that the two workbooksare empty i just want the macro to work. notce in my code that from workbook2 i search for if workbook1 is open. thanks again for your patience. asaf
  10. A

    code to verify if workbook is open

    yes i saved the files. where can i upload file?
  11. A

    code to verify if workbook is open

    hi probably i am doing something wrong the function is not working as well. i tried the function and procedure below like marc suggessted: Function IsOpen(Name$) As Boolean On Error Resume Next IsOpen = IsObject(Workbooks("workbook1 .xlsm")) End Function Sub find1() If IsOpen("workbook1...
  12. A

    code to verify if workbook is open

    hi again i tried this code again and its not finding the workbook name. for instance i created 2 workbooks: workbook1 and workbook2. then i try thi code below: Sub IsWorkbookOpen1() Dim wbName As String Dim wb As Workbook wbName = "worksheet1.xlsm" For Each wb In Workbooks...
  13. A

    code to verify if workbook is open

    question to vijay.vizzu its not working. can you check it. the fot each loop seems to be very simple but not work. thanks again...:)
  14. A

    code to verify if workbook is open

    hi, i have macro to open a workbook. i want to add single statement before to check if the workbook is already open please help.
  15. A

    simple vba code- active workbooks [SOLVED]

    THANKS' I MADE IT BY MY SELF.
  16. A

    simple vba code- active workbooks [SOLVED]

    that works but i want to put this inside cells. instead of msgbox i need to put the names in a cell
  17. A

    simple vba code- active workbooks [SOLVED]

    hi there i have a little problem i cant solve' i want to write a code that tells me what workbooks is active all the time. i succeed to write a code that tells me how many open but i cant get the file name. please help' asaf
  18. A

    simple problem with excell chart

    hi, i have a simple problem with excell chart.i have 2 charts' one for the sales and one for the budget. inside all chart i divided the parts into x,y,z. i need to merge this two chrts into one. it should look like every month i have the sales and the budget and must have divided inside to...
  19. A

    try findinding the catalog number from a cell with different numbers

    here is the example: catalogic number abc1234 abs12345 abc123 abc12345678
  20. A

    try findinding the catalog number from a cell with different numbers

    hi, I have a little problem, I have column with cataloged numbers like below: number + letters the problem is that the number in the cells can be 4 or 8 or 3... I cant use "right" formula. I need a formula that recognized how to look only for the numbers enclosed herewith file with...
  21. A

    create loop for main range

    hi, i wrote a simple code that suppose to run in main range, and inside this range i need the code to run column by culomn. the range is between column b to i, and i need to run first on column b after that to run on column c and ect... in every column thecode must manipulate the cells...
  22. A

    color cell under condition

    how can i set a range to compare in diffrent sheet?
  23. A

    color cell under condition

    its working very good, but i barely understand it. can you xplain it step by step?
  24. A

    color cell under condition

    i try it. its not working, and i understand why. the last rows its the problem. after the second "end if" there is "next x" that run the loop again until he finish the x range. after finishing x range the macro goes to cell range. well, this code is not good and not working. someone can...
  25. A

    color cell under condition

    hi colin. i want that cell a1 will compare to c1, and a2 compare to c2. the reason why i'm not doing it in conditional formating is the fact that i need to build this code on 30 different ranges scatered on a file with 6 sheets. any way' now the code isnt working no matter what numbers i put...
Back
Top