Search results

  1. chergh

    This site is ever increasingly becoming a joke...

    Well if you're going to make uninformed assumptions about my motives you should expect to be wrong a lot.
  2. chergh

    This site is ever increasingly becoming a joke...

    Not sure I follow. My position is I am against moderators making up their own rules for their threads just because they can enforce it. Unless moderators are going to extend this right to all thread authors and make any edits requested by the thread author. As far as I am aware there are board...
  3. chergh

    Runtime 1004 Select method of Worksheet class failed

    There might be a blank string or something in one of the cells. try changin the line where contents are cleared to: summSheet.Range("A2:IV" & lastRow).ClearContents
  4. chergh

    This site is ever increasingly becoming a joke...

    I thought this was meant to be a community or something so why not use that as an analogy. In most communities it is not the diktat of community leaders that decides the rules but rather the consensus of the community which is then implemented by the community leaders.
  5. chergh

    This site is ever increasingly becoming a joke...

    Re: Not a good way to manage a site... Yep, looks like we are free to do as bob tells us in his threads.
  6. chergh

    This site is ever increasingly becoming a joke...

    Re: Not a good way to manage a site... It is rather dictatorial. Maybe we should just spam the thread in protest... or we could pray for bob to change his mind :p
  7. chergh

    This site is ever increasingly becoming a joke...

    You want to delete your own posts? surely you can do that already:confused:
  8. chergh

    This site is ever increasingly becoming a joke...

    You're just to uptight and precious about you're threads. Did you ever look into some yoga classes as I suggested to help you unwind a little?
  9. chergh

    Runtime 1004 Select method of Worksheet class failed

    Like this, the change is highlighted in blue. Sub blah() Dim ws As Worksheet Dim summSheet As Worksheet Dim lastRow As Long Set summSheet = ThisWorkbook.Worksheets("Sheet1") lastRow = summSheet.UsedRange.Rows(summSheet.UsedRange.Rows.Count).Row summSheet.Range("A2:CH" &...
  10. chergh

    Your Favorite Restaurants

    Ah I stopped there when I drove Route 66 in 2007. Even by American standards the portion size seemed insane.
  11. chergh

    Your Favorite Restaurants

    My favourite dining experience is undoubtedly The Fat Duck in Bray. It's an amazing experience and given it's nature not some where I would go more than once every five years or so. They only have a tasting menu and the meal lasts about 5 hours. For a good meal my favourite place is a gastropub...
  12. chergh

    Runtime 1004 Select method of Worksheet class failed

    Now something a little more helpful. Best way to solve issues with select statement is to not use them. Sub blah() Dim ws As Worksheet Dim summSheet As Worksheet Dim lastRow As Long Set summSheet = ThisWorkbook.Worksheets("Sheet1") lastRow =...
  13. chergh

    Runtime 1004 Select method of Worksheet class failed

    :eek:.........
  14. chergh

    Intelligent Design Is True

    Scientist have successfully created the first self-replicating, synthetic bacterial cell. http://www.zdnet.com/photos/scientists-build-first-synthetic-bacteria-photos/425927 I now admit intelligent design does exist thought it seems to be distinctly human and not divine.
  15. chergh

    Transforming XML to HTML in Access with VBA

    I think you are getting confused as far as I know xslt is nothing to do with excel but is used to translate xml documents between different schemas.
  16. chergh

    OK, so what's trolling??

    Just trolling you ;)
  17. chergh

    OK, so what's trolling??

    Ahh you must be a bnp voter then
  18. chergh

    OK, so what's trolling??

    You don't know what trolling is? you must a christian or something
  19. chergh

    Portal game for FREE, but not for long!

    If you don't have it you really should it's an absolutley sublime puzzle game with a superb sense of humour.
  20. chergh

    Open the excelsheet to view data instead of printing it off

    Look up the "showmodal" property of the userform in help
Back
Top Bottom