Search results

  1. M

    Logical summation in unbond text box

    If you want a "REPORT", send some records (your table), and tell us what is a look of "Report", (draw the report).
  2. M

    Logical summation in unbond text box

    Ok Uncle Gizmo. He can adapt it as he want.
  3. M

    Logical summation in unbond text box

    Look at "DemoSumA20022003.mdb (attachment, zip). Look at TAble1, Form1 (VBA). Open form and try.
  4. M

    Today Value minus Previous Value in Query

    I think it can be done via Module (function). Look at "DemoTVqueryA20022003.mdb (attachment, zip). Look at Table1 (I added 2 records T1850), look at Query1 (Column Xp1), look at Module1. Run Query1 and see.
  5. M

    Exporting Query to Excel from Custom Form

    I suggest to do it via OUTPUTTO function. Look at "DemoQueryExcelA2000.mdb (attachmnet, zip). Open Form and try. Adapt it as you need.
  6. M

    Standard format in VBA without decimals

    Try this: In the Table (for this field) put: Data Type = Number, Format = #.### In the Form (for this field) put: Format = #.###
  7. M

    Displaying sum of totals in datasheet view on form

    Yes, short example of your application, with fictitious data.
  8. M

    Lists dates

    Look at "DemoDateBetweenA2000.mdb" (attachment, zip). Open form and try.
  9. M

    Displaying sum of totals in datasheet view on form

    Send a short example of your MDB, (access2000 or 2002-2003).
  10. M

    Default value combobox, but not in list

    Put "0" in the table, (without quotation marks).
  11. M

    extension bar

    As I can understand you, you need 2 tables and 2 forms for this. Table1: f1ID, (Number, Primary key), f2Fn (txt, first name), f3Sn (txt, second name), f4P (txt, profession), f5.......... Table2: f1ID2 (autonumber, Primary key), f2Fk (number, foreign key) f3P1 (txt, next porfession), f4P2 (txt...
  12. M

    calculated field is blank 1 time it showed #error

    Send a short example of your MDB, (Access2000 or 2002-2003). Yes, maybe "Nz" solve the problem if any of your variable is null. It must be 0 or > 0.
  13. M

    calculated field is blank 1 time it showed #error

    Try this: Total: [w]+[b]+[O]+[NA]
  14. M

    Subform Cascade Delete

    Send a short example of your MDB, (Access2000 or 2002-2003).
  15. M

    compile error when round

    Try this; Round([Price1]*1.35;0)
  16. M

    Import text file without TXT extension

    I think it is not a txt file, I don't know.
  17. M

    Autofill fields depending on another

    You don't need 3 combo boxes. Put a combo box on the EID field. Look at "DemoComboBoxA2000.mdb" (attachment, zip). First column in combo is column 0.
  18. M

    Generating ID using letters from related tables and sequential numbers

    You have to know how many records you look forward, and therefore to adapt VBA (Right and Format). Look at "DemoNewIDA2003.mdb" (attachment, zip). Open Form and try.
  19. M

    Import text file without TXT extension

    1) You have to arrange a layout of TXT file with th sender. It mus be the same all the time. 2) When you have a TXT file on your PC, put it in the same Directory wiht your MDB. 3) In your MDB link this TXT file (click on FILE, GET EXTERNAL DATA, LINK TABLES). In the form "LINK", select a...
  20. M

    Grab specific text from a table with VBA

    Try to do it via DLookUp function.
Back
Top Bottom