Search results

  1. Fizzio

    Thank you for the birthday message Tess. Been a while since I logged on here and only just got...

    Thank you for the birthday message Tess. Been a while since I logged on here and only just got the message! Cheers
  2. Fizzio

    Forum Restructure

    Thanks Bob, glad to pop in - have had a 'proper' job since Jan 06 and unfortunately have not had the reason to call in as my work time is now 100% hands on, hurting innocent individuals on the NHS, not much chance to 'play' with access! I still think that a Krypton Factor observation round...
  3. Fizzio

    Forum Restructure

    Hi Guys, Bloody ages since I've been here - glad to see so many of you still holding the fort - Doc, Rich, SJ, Bob (rise to fame eh?) to name but a few. Also - still see the same basic questions repeated on the front page!!! so......... How bout an observation quiz for all to complete on...
  4. Fizzio

    Loop / Copy from one form/table to another.

    Hi Ade, I'm not 100% clear what you are trying to do but can you not do this with a simple parameter append query?
  5. Fizzio

    Create New Table

    It is still a bad idea as you can export the data via parameter queries. Just use either a lookup table to identify which record groups you want to filter on or hard code it. A lookup table would be better.
  6. Fizzio

    Event Procedure Problem?

    try Private Sub Combobox1_AfterUpdate() Me.Textbox1=me.Combobox1.Column(1) End Sub
  7. Fizzio

    Combo Box v. List Box

    Yes, sorry Pat. Reviewing the thread I realise I had actually said that the structure was ok but then redeemed myself in the data structure in the demo! Thanks for the correction :o
  8. Fizzio

    Story

    them upside down
  9. Fizzio

    Unique Form RecordSource

    If you are only using the join to filter by N-02 codes, make sure that the recordset only includes the fields that you want to update. You do not need to use a query in the main query as I'm sure you will be able to employ the same filtering by simply using the tables in the QBE grid. Can you...
  10. Fizzio

    Story

    rained so much
  11. Fizzio

    Sum alternate records (odd & even)

    OK DAO Version (Still getting to grips with ADO :cool: ) Public Function fnTotalAlternates (strOddEven as String) as Double Dim MyDb as DAO.Database Dim MyRs as DAO.Recordset Set MyDb = currentDb() Set MyRs = MyDb.openrecordset(Your Recordsource) Select Case strOddEven Case "Odd" do...
  12. Fizzio

    Story

    up teaching at
  13. Fizzio

    Sum alternate records (odd & even)

    In a nutshell: Create a functions, to sum your records eg fnTotalAlternates (strOddEven as String) Use a Select Case command to switch between odd/even. Create a recordset clone of the forms recordset step through every other record using the movenext method On Odds - move to the first...
  14. Fizzio

    Totals in a Report

    Sorry, I misread your question and did not clarify my answer enough. The correct sytax would be =[Forms]![plainorderitemssubform].form![GrandTotal] - you don not need to sum this if you have already calculated this in the subform. Can you clarify what you are trying to show though as I'm a...
  15. Fizzio

    Totals in a Report

    Do the totals calculation in the subform footer and then refer to this in the main report footer. ie Grand Total = Reports!MainReport!SubReport.Report!TotalsControl
  16. Fizzio

    Story

    ticklestick in hand
  17. Fizzio

    IIF Equation question

    Try this =iif([net]>0,[net]*0.5,[net]*0.333)
  18. Fizzio

    Combo Box v. List Box

    Pat, from my impression, I think that mbentle wants the possibility of allowing people to take no only a course but selectively differing modules within that course structure. I agree that a junction table is necessary to establish a many-to-many relationship but how mbentle chooses to split...
  19. Fizzio

    Attempting to use SQL in a module

    Use the search and see what you come across - best way to learn new hints, tricks and tips. Get back if you are really stuck.
  20. Fizzio

    Attempting to use SQL in a module

    Providing you have a robunt link between your data and lookup tables, you could do this with a looping recordset to a) loop through all the counties b) use the county produced by this to power the criteria in your query c) Use and append query to add the data returned to the new table. Rather...
Top Bottom