Search results

  1. DHookom

    Solved Sum the data in a textbox in continous form

    What are the expressions in the detail section and form footer?
  2. DHookom

    Solved Sum the data in a textbox in continous form

    You could try Sum() the statement from the text box. =Sum([your statement here])
  3. DHookom

    Solved Combining IIf Statements

    I took one of your expressions and began creating a function with comments about the process I go through in your other thread. You need to start the conversion and a new thread when you begin to stumble (we all do).
  4. DHookom

    Make a negative number a "0"

    Here's how I would go about converting the expression into a VBA function in a standard module named modBusinessCalcs. You can test this in the immediate window by using: ? YourFunctionName(value1, value2, value3,...) You should also understand how to add a breakpoint to allow your to step...
  5. DHookom

    Make a negative number a "0"

    Converting on paper could look like a process flow diagram. There are true/false questions that direct the next process/decision. As you need a new input to the process, it comes from a new argument in your function.
  6. DHookom

    Need to print a crosstab report without complete data

    One of your issues is the lack of normalization. You have activities and engagements in fields across rather than creating new related records. I am attempting to normalize tblChallenges with a union query. It will take a little work. How do you calculate Planned, Engagement, and Achievement...
  7. DHookom

    Textbox looses info when fromis closed

    I question the need to save the values in a table. Most of the fields you think you need to save violate normalization rules. Your situation might be unique and require saving copies of values.
  8. DHookom

    Make a negative number a "0"

    Apparently, another opinion was needed to reinforce the consensus here.
  9. DHookom

    Solved Copy a form and make it a popup

    Every time you modify your code, you need to compile it to check for errors. This assumes you use Option Explicit at the top of every module.
  10. DHookom

    Solved Copy a form and make it a popup

    Did you attempt to compile your code?
  11. DHookom

    Need to print a crosstab report without complete data

    There is no date column, only a WeekNo. Did you want to use the WeekNo as the column heading? If WeekNo is the column heading, which columns create your Row Headings and which one column/field do you want to use the value? Can you create and share an Excel that mimics your desired result?
  12. DHookom

    Calculated field in query

    JohnPapa’s profile suggests Cyprus. Sadly, I had to google map it 🙁
  13. DHookom

    Export 2 forms to same spreadsheet

    Wow! A link to Ken Snell’s great Excel code. He’s been gone for over 4 years yet still is contributing ❤️.
  14. DHookom

    Solved current record PDF issues

    With the code I suggested with the code in the link, it’s very easy to reset the SQL to the original. You can also build a fairly sophisticated where clause, apply it, and call it from any form. Using a control on a form limits you to having that form open and setting the correct value.
  15. DHookom

    Windows 11 Slowing Down Database

    I would look into antivirus software. Try disabling to see if performance improves.
  16. DHookom

    Calculated field in query

    I realize this was your version and expect the OP would understand (and possibly post text SQL versus an image). I wanted something to simply copy and paste.
  17. DHookom

    Calculated field in query

    Based on your location, should you use ";" in place of ","? DateAdd("m";[factor];[dailydate]) AS Expr1
  18. DHookom

    Solved Appended Data changes to Table ID

    Tell us exactly what you want to see in the subform and how you expect to add a new record? Did you consider changing the properties of the subform to Add mode?
  19. DHookom

    Solved Appended Data changes to Table ID

    Is there a reason you don't simply enter the new check at the New Record on the subform?
  20. DHookom

    Solved current record PDF issues

    A method that has always worked for me is to change something in the record source of the report to limit the records returned. For instance if you have an employee table [tblEmployees] and want to limit the report to a specific EmpID, create a query [qselEmployees] with the SQL of SELECT * FROM...
Back
Top Bottom