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

    How do I post my code in the forum in same format as is apprears on VBA

    With ActiveCell .ListObject.ListRows.Add (Ro - Header_Row + 2) .Offset(Ro).EntireRow.Hidden = False End With End With
  2. G

    How do I post my code in the forum in same format as is apprears on VBA

    Thanks Shri, `With ActiveCell .ListObject.ListRows.Add (Ro - Header_Row + 2) .Offset(Ro).EntireRow.Hidden = False End With End With `
  3. G

    Hiding and Unhiding Rows with Filter Applied

    Hello All, I've got a bit of code that when you click on a button, it inserts a new row below with a unique ID number. There are a series of button down the list as they indicate a new section in the list and a button adds a new row to that section. The problem I have is that when I apply a...
  4. G

    How do I post my code in the forum in same format as is apprears on VBA

    Hello all, This is probably a very simple question but many times I have posted code and i loose all the formatting. How do I keep the VBA format when posting here? Regards, Gumbles
  5. G

    Camera Tool

    Hi there, I am using the camera tool to display a group of cells from one workbook to another. The tool works great when its in the same workbook as ive used it many times before. The problem im having is that when I have the camera tool referreing to another workbook it doesnt update. Even...
  6. G

    Adding Filter To One Column In Table

    Thank you indeed.
  7. G

    Adding Filter To One Column In Table

    Good day to you bobhc, Does this come in the form of a dropdown button? as this would be ideal. If you could indicate how to apply this one column filter on a table, I'd be most gratful. Gumbles
  8. G

    Adding Filter To One Column In Table

    Hello there, Im trying to apply a filter to only ONE column in my table. I know this is possible with normal columns by selecting the column before apply the filter but cant seem to apply this method on my table? Is this possible? Cheers, Gumbles
  9. G

    Shape to Insert Line and Add Unique ID Number

    Hi Narayan, Sorry but could you upload the file again as it doesn't seem to want to download. Ive been trying over the weekend but with no luck. Thanks, Gumbles.
  10. G

    Shape to Insert Line and Add Unique ID Number

    Ill have to download it at home, so in a few hours. Thanks so much for all your help. Gumbles
  11. G

    Shape to Insert Line and Add Unique ID Number

    Hi Narayan, Apologies as I must have uploaded an older version. But the layout is exactly the same. The shapes are overlayed on the questions in column A:A (using snap to grid) and made invisible so i must have overlooked this when uploading the wrong version.(DOH!) The code on my current...
  12. G

    Shape to Insert Line and Add Unique ID Number

    Apologies for the delay, This is the basic layout of my table. https://www.dropbox.com/s/377v67ncock1m9p/Issue_List.xlsx Also i have been trying your method of using f9 and going through the code with f8 and the error is always on the "selection.listobject.listrow.add()" line. Gumbles.
  13. G

    Shape to Insert Line and Add Unique ID Number

    Narayan, Ill upload a version when I get home as I cannot access dropbox or speedyshare from work, the buggers. Just as a quick check: My Table is A3:K33 Shapes are in A3:A33 ID number = B3:B33 Regards, Gumbles
  14. G

    Shape to Insert Line and Add Unique ID Number

    Narayan, Im getting a debug error on this line: .ListObject.ListRows.Add (Ro) I might be very wrong here, but when I was playing with the code before i could never get the fucntion "Activecell" to work. Not sure if this might mean something to you. Really appreciated! Gumbles
  15. G

    Shape to Insert Line and Add Unique ID Number

    Narayan, That code doesnt seem to be working in my table. I get a debug error. Is it possible that because it in a table it needs to be selected as one? so perhaps the code needs to contain: ListObject.ListRows? and thanks for the help. Gumbles
  16. G

    Shape to Insert Line and Add Unique ID Number

    Hi Narayan, It does work but not completely, The 1st bit of formula inserts a row but it's an entire row (accross the whole worksheet), I only need a row in the table. As there is other information to the left of the table. I hope this is clearer. Gumbles.
  17. G

    Shape to Insert Line and Add Unique ID Number

    Ok So i have used your code and tried to bend it to my will. This is what I have: Sub insert_row() Ro = ActiveSheet.Shapes(Application.Caller).TopLeftCell.Offset(1, 0).Row Rows(Ro).Insert Shift:=xlShiftUp Rows(Ro).Hidden = False End Sub but this inserts a row to the whole worksheet...
  18. G

    Shape to Insert Line and Add Unique ID Number

    Hello Narayan, Thankyou once again for helping me! Im currently trying to piece togethe all the bits of code I have to perform the required task and this has helped hugely as im working it out through recorded macros lol. Cheers, Gumbles.
  19. G

    Shape to Insert Line and Add Unique ID Number

    I have this which helps identify the cells address. Not sure if it can be made generic to any shape though. Worksheets("Sheet Name").Shapes("Rectangle 1").TopLeftCell.Address Still trying. Gumbles
  20. G

    Shape to Insert Line and Add Unique ID Number

    Hi there, I am trying to create a peice of code that is generic for all shapes on a particular worksheet, so any shapes on the worksheet will use it when clicked. There is a list of headings and a shape is overlayed on each heading. WHen the user clicks on the shape it goes one row down from...
  21. G

    Perform Macro If Cell Changes

    Roger that! Will update when it changes.
  22. G

    Perform Macro If Cell Changes

    Brilliant! Thanks Very much Hui. I have one question though. The data in $B:$2 will change when the week changes and this will happen before the macros are enabled as They have to be turned on. Will this affect the operation of the code or should it work regardless? Gumbles.
  23. G

    Perform Macro If Cell Changes

    Hello all, I have a small recorded macro that copies one list of cells (Week 1) to another list (Week 2) then deletes the first list. I would like to make this macro run automatically when the cell L2 changes. They are the current week and the next week so this needs to happen each week...
  24. G

    Button to know which cell its in

    Marvellous! Thank you so much. Gumbles
  25. G

    Button to know which cell its in

    Thanks Narayan, A very simple and elegant solution, Ill give this a try when Im home. Do you know if its possible to apply this macro to a shape? as Ideally I would like to make the button invisible. Gumbles
Back
Top