Recent content by bob fitz

  1. bob fitz

    hello dear hope you are good I want to add the total bill amount in the header. How can I do it?

    I would change the name of Text25 to something that has some meaning E.g. txtInvTotal
  2. bob fitz

    hello dear hope you are good I want to add the total bill amount in the header. How can I do it?

    try: =[CreditInvoices_Subform].[Form]![Text25]
  3. bob fitz

    hello dear hope you are good I want to add the total bill amount in the header. How can I do it?

    Perhaps the same expression that you have used in the Footer would work in the Header =Sum([BillAmount])
  4. bob fitz

    Trump vs Zelensky

    I remember there was once a British Prime Minister who tried to negotiate with a person who, IMHO, had similar traits to those of Putin. He returned, waving a piece of paper declaring "Peace in our time". Have the most powerful people in the world learnt nothing from history? God help us all.
  5. bob fitz

    New here!

    Welcome to the forum Nelson:)
  6. bob fitz

    How to count the number of digits in a field while typing -with vba code?

    Hopefully, the OP will let us know ;)
  7. bob fitz

    How to count the number of digits in a field while typing -with vba code?

    Not sure that I've understood the requirement correctly but perhaps: MsgBox Len(Me.ActiveControl.Text) in the On Change event of a textbox control.
  8. bob fitz

    Solved closing a thread

    Thread Tools, top right of thread. Mark as Solved
  9. bob fitz

    Solved Zero Results from Requery

    I'm glad that you have a satisfactory answer to your enquiry. Please flag the thread as Solved.
  10. bob fitz

    Solved Zero Results from Requery

    Have you considered using the DCount() function in an IF/Else/Then and only doing the requery IF DCount returns >0 Untested: If DCount("TitleName","FullList2","TitleName Like "*" & Me.Text74 & "*")>0 Then DoCmd.Requery EndIf
  11. bob fitz

    Hello out there!

    Davebert Can you post a copy of what you have so far and perhaps tell us something about the database you want to create.
  12. bob fitz

    Solved Drop down with Validation

    Sorry, I didn't notice that the question was in the Excel forum :sleep:
  13. bob fitz

    Solved Drop down with Validation

    Set the Indexed property of column A to: Yes (No Duplicates) in the table properties.
  14. bob fitz

    Hi, I'm David from Malta

    The combo boxes from which you choose players' names need to be bound to a Recordsource so that the selection is saved somewhere. I've noticed a few of other things that you should perhaps look at; Some of your tables have no PK You have Lookups in tables. You have repeating data in tables e.g...
Back
Top Bottom