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

    Registering To VBA Project

    You may have to find the .txt file first then open it and then use what value is in the file.
  2. D

    Value and O for Sumproduct

    Have a look at row 1467, You have Text in col E and F, remove text and it will work.
  3. D

    Data Input macro Reqd

    Have you tried to code it your self yet ?
  4. D

    Swipe Card Records Excel Spreadsheet

    No code on file showing move to row 30
  5. D

    Swipe Card Records Excel Spreadsheet

    You need to post excel code so it can be changed.
  6. D

    Swipe Card Records Excel Spreadsheet

    What are you looking for ?
  7. D

    VBA Macro required - Copy data from another workbook and paste in new cell and delete it then

    Can you post the code you have tried to do your tasks ?
  8. D

    Keep spacing between pivot tables

    Hi Gman A new vba way, (You really got me thinking on this problem !!!) Put code in a module and run "Insert3Rows" Sub Insert3Rows() Application.ScreenUpdating = False Call DeleteBlankRows Dim lRow As Long Dim Rng As Range Dim WorkRng As Range On Error Resume Next Set WorkRng =...
  9. D

    Keep spacing between Pivots

    Put this in to a vba sub :- Const blanks =3 Dim lastValue AsString, i AsLong, r AsLong Do r = r +1 If r >1 And lastValue <> Cells(r,1).Value Then If Cells(r,1).Value = "" ThenExitDo For i =1 To blanks Rows(r).Insert Shift:=xlDown Next r = r + blanks EndIf lastValue = Cells(r,1).Value Loop
  10. D

    IFERROR problem

    The way it works is :- =IF(ISERROR(Your Formula here),"What you want to see on error",Your Formula here)
  11. D

    IFERROR problem

    Try =IF(ISERROR(SUM(($N115+$N116)/$N120)*$J114),"0",SUM(($N115+$N116)/$N120)*$J114)
  12. D

    IFERROR problem

    Try :- =IF(ISERROR(O120-N117-(($N$2/$N121)*S114)),"0",O120-N117-(($N$2/$N121)*S114))
  13. D

    Finding contra entries using amount & text in vba

    If they are actually true dates, just change the cell format and the display should change.
  14. D

    Extracting specific value from a table

    Is one formula not simpler than 6010 formula's ?
  15. D

    Extracting specific value from a table

    Or try this if you will have any negative numbers :- =SMALL(A5:A3005,COUNTIF(A5:A3005,0)+COUNTIF(A5:A3005,"<0")+1)
  16. D

    Extracting specific value from a table

    Try this :- =(SMALL(A5:A3005,COUNTIF($A$5:$A$3005,0)+1))
  17. D

    Change data in a Table

    Its a 10 week Chess tournament and the "Data" Table values cant change until contest is over then ratings are updated and used for a new contest.
  18. D

    Employee Database With Images

    I think your posts should be in "The Vault" as you are not looking for help.
  19. D

    Change data in a Table

    Code is good but it cant be used as a Worksheet_Change.
  20. D

    Change data in a Table

    I am looking for code / tips / links to Update some of the data in a sorted table with new data from K8-K17.
  21. D

    How to find out last cell in the column

    Use it like this :- Sub AW() aw_y_max = Sheets("Sheet1").UsedRange.Rows.Count With Worksheets("Sheet1") .Cells.Item(aw_y_max, "AW").Interior.ColorIndex = 3 End With End Sub
  22. D

    Fast Filter Excel Tables - PDF and Model Attached

    I think post should have been in "The vault"
  23. D

    Fast Filter Excel Tables - PDF and Model Attached

    What fault in your code are you looking to fix ?
  24. D

    Delete Picture Help

    Try Activesheet.Pictures.Delete
Back
Top