Search results

  1. chergh

    deleting rows if duplicate

    You can also use the special filter in earlier versions of excel
  2. chergh

    Divide by all values greater than a string of 0 length

    The count function should do it =IF('Delivery Suite'!K17+'Orchard Mat.'!K12+'Orchard Gynae'!K14+Riverbank!K10+Meadowbank!K13=0,"",('Delivery Suite'!K17+'Orchard Mat.'!K12+'Orchard Gynae'!K14+Riverbank!K10+Meadowbank!K13)/COUNT('Delivery Suite'!K17,'Orchard Mat.'!K12,'Orchard...
  3. chergh

    rounding problem

    You will probably have to divide all your numbers by one thousand and then in your results cell use =ROUNDDOWN(A2-A3)
  4. chergh

    rounding problem

    I would just put in large text that a difference of 1 is due to rounding. I also put the following in code to stop them from wasting paper by printing Private Sub Workbook_BeforePrint(Cancel As Boolean) Cancel = True End Sub
  5. chergh

    rounding problem

    778 is the correct answer with rounding why would you want to change it???
  6. chergh

    Pull Data from Excel

    Create a named range in your excel file and then add it as a linked table into access.
  7. chergh

    Picking out the odd text

    Something like this will work but it does have limitations such as if there are two occurences of a word in a phrase then it will not pick up the second occurence is missing. Sub blah() Dim arr1 As Variant Dim arr2 As Variant Dim blnMatch As Boolean arr1 =...
  8. chergh

    List index property

    Does the combobox have the focus before you set the listindex?
  9. chergh

    Excel IF statement

    Well the first post said something along the lines off "I need to do this for a school assignment" so there wasn't much to be confused about.
  10. chergh

    How to use Current Region for all sheets

    [code] Sub format7() For Each sht In ActiveWorkbook.Worksheets With sht.UsedRange With .Borders(xlBottom) .LineStyle = xlDouble .Weight = xlThick .ColorIndex = xlAutomatic End With With .Borders(xlLeft)...
  11. chergh

    How to use Current Region for all sheets

    Ah the mistake was I was being stupid and din't qualify the range. I've had a look at your worksheet and using "usedrange" instead of "currentregion" is more appropriate. this will work. Sub format7() For Each sht In ActiveWorkbook.Worksheets With sht.UsedRange With...
  12. chergh

    How to use Current Region for all sheets

    Should be easy enough. instead of "currentregion" I would probably use "usedrange" but you may have a reason for current region. Try this: Sub format7() For Each sht In ActiveWorkbook.Worksheets with Range("B10").CurrentRegion With .Borders(xlBottom)...
  13. chergh

    How to use Current Region for all sheets

    Can you explain what you are trying to do please
  14. chergh

    Excel IF statement

    How's this: If you're expecting us to do your homework for you then exit sub.
  15. chergh

    Vlookup - Multiple Values

    Well you could use a special filter to create a unique list of account numbers, then use the output of the special filter to create a loop for an auto filter and then copy and paste and transpose the names into a row. But I'm guessing that will be to complicated for you to code, and I'm to busy...
  16. chergh

    Excel changing cell properties on its own

    Because when you put something into excel it tries to guess what it it and what you put in looks like a date to excel, just one in the far future. Either format it as text or use your own custom format of "##-####"
  17. chergh

    Excel changing cell properties on its own

    12-2896 isn't a number it's a string.
  18. chergh

    Complex Lookup Formula

    If your table is laid out low, high and sigma in colums a to c respectivley then the following formula should work: =vlookup(49,A1:C100,3,true)
  19. chergh

    Federal rules on campus file sharing kick in today

    What like the region system on a lot of dvd players?
  20. chergh

    Brain Teasers

    The letter "m" by the looks of it. No mensa for me I just like puzzles.
Back
Top Bottom