Search results

  1. Darrell

    Prevent MS Teams from moving to different screen

    Sorry I guess I meant 'make it smaller' when I said minimize. So it does retain that info but only until the PC is restarted.
  2. Darrell

    Prevent MS Teams from moving to different screen

    My low level annoying problem is that every morning when I log onto my PC, all of my apps that I open, open on the monitor that they were closed from on the previous day. Except for MS Teams. Every day it opens fully maximized on monitor 1 and I have to drag it over to monitor 2 and minimize...
  3. Darrell

    Starship Troopers Still Being Fussed Over

    Kind of has it in the title though to be fair ;)
  4. Darrell

    Greatest ONE LINE in a song ever

    Wonder no more ;)
  5. Darrell

    Greatest ONE LINE in a song ever

    Argh so many favourites... "I don't blame you for taking umbrage with animals staring at your cleavage" - Lou Reed, So Alone "If the real Jesus Christ were to stand up today, he'd be gunned down cold by the C.I.A." - The The, Armageddon Days (Are Here Again) "Cold silence has a tendency to...
  6. Darrell

    Is there a better way?

    Well I was only trying to show a method of finding the row that he was after, not trying to write his code for him.. But thanks for the feedback, I'll be more careful in future never to suggest anything. (y)
  7. Darrell

    Is there a better way?

    Does this help..? Dim rRange As Range Set rRange = xlSh.Cells.Find(What:=rsLeave![DoD ID], After:=ActiveCell, LookIn:= _ xlFormulas2, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:= _ xlNext, MatchCase:=False, SearchFormat:=False) rownum = rRange.Row
  8. Darrell

    The Slightly Obscure Music Discussion And Quizzy Thread

    Since we've been talking about drumming...
  9. Darrell

    The Slightly Obscure Music Discussion And Quizzy Thread

    Cool - I didn't even know this was a real person, I just hear it a lot when my mate from England says he is hungry
  10. Darrell

    Books: A Portal into A Different World

    David Lifton Best Evidence: Disguise and Deception in the Assassination of John F. Kennedy
  11. Darrell

    The Slightly Obscure Music Discussion And Quizzy Thread

    Like Bruce Dickenson, the lead singer from Iron Maiden - flying the band on tour in their own Boeing 747!!
  12. Darrell

    Solved Getting Error Intersect of Object Globad Failed

    On your Sheet3 code, I think this bit should have been If ActiveCell.Text = "DELETE" Then
  13. Darrell

    Create Excel from Access

    Yeah I thought it was an odd way of doing it but his original request was to populate multiple sheets (1 sheet per year) and so I thought he was still going down that route. This request is a bit of a moving target to be fair...
  14. Darrell

    Create Excel from Access

    OK looks you have decided to create the Workbook from scratch when the report is run. You will probably need to work out how many sheets to create based on the range of leave in your table, but I'm sure you can work that out. Gasman is right in that you are referencing the wrong object, this...
  15. Darrell

    Numbering

    Try something like this.. Sub Macro1() Dim i As Integer Dim y As Integer With ThisWorkbook.Sheets("Sheet5") .Range("D3") = "Monday" .Range("D3").AutoFill Destination:=.Range("D3:ND3"), Type:=xlFillDefault y = 4 i = 1 Do Until .Cells(2, y).Address = "$NE$2"...
  16. Darrell

    Create Excel from Access

    For what it's worth, here is a rough attempt at what you originally were looking for where the spreadsheet is updated after the Save button is clicked. I've based this on the following: - The Input form in access has: Staff ID (ie a unique number), First Name, Last Name, Leave Type, Leave Date...
  17. Darrell

    Create Excel from Access

    Just curious but what happens when you have two people with the same name..?
  18. Darrell

    The Oscars

    I'd definitely take it the wrong way and slap Greta Thunberg :D
  19. Darrell

    Copy and Paste if a criteria is met

    This might get you started. You'll need to put this in the Worksheet_Change of each sheet 2-5 Private Sub Worksheet_Change(ByVal Target As Range) Dim wReq_Sheet As Worksheet Dim sMat As String Dim iQty As Integer Dim sDesc As String Dim iLastRow As Integer Set wReq_Sheet =...
  20. Darrell

    The Slightly Obscure Music Discussion And Quizzy Thread

    I think I've found the Anti-Beato...
Back
Top Bottom