Recent content by dubmunkey

  1. D

    Concatenate multiple values into one string?

    do you mean this part: Comp = source.Fields("Award") i should have removed that from my code, it was left over from my first approach
  2. D

    Concatenate multiple values into one string?

    Hi all, i have a bit of a bizarre one that im sure is possible but im missing a trick- basically i have to join the values of a table from this: Term Week Award Summer 3 jon for was helping raise charity money, Summer 3 lydia for getting top marks, into Term...
  3. D

    Bizaare Field joinging issue

    Hi all, i have a query which joins the email fields from a table-a table which has an email address for every teacher of a student in our school- up until a while ago this worked perfectly: and would get studentid | email 1234 | [art teacher email]; [biology teacher email] etc etc...
  4. D

    weirdest cross-tab error

    Hi all, just noticed the weirdest thing with a cross-tab ive created: background- corss tab is an appoinment matrix time slot as the row teacher as the column parent as the value essentially tells you which parent the teacher is seeing in any time slot... problem im getting is duplicate...
  5. D

    add loop to skip misisng indexes

    forgot to subscribe to thread
  6. D

    add loop to skip misisng indexes

    hi im using this vb code: Function MySplit(myfield,separator as string,index as long) if not isnull(myfield) then mysplit = split(myfield,separator)(index) else ' what value? 'mysplit = "XXX" end if End function to break up an address field which is separated by chr(13) & chr(10) - works...
  7. D

    auto resize subform

    just heard from someone else that this isn't possible- only through vb.. dubs
  8. D

    auto resize subform

    just heard from someone else that this isn't possible- only through vb.. dubs
  9. D

    auto resize subform

    Hi all, i have a main form with many subforms- each of which can have vearying lines of data... what i need to do is have the subforms grow or shrink accoridng to its contents like you can do with subreports but the can grow/can shrink properties dont seem to have any effect.. is there a way...
  10. D

    arrggh- update query driving me bonkers!

    Hi all, im having trouble with an update query wher i need to update one field [class] of a table [txStudents] from an existing query Newfacility_Students where the StudentId in [txStudents] matches the StudentId in Newfacility_Students thought it would be simple enough UPDATE txStudents...
  11. D

    Subform wont grow to include new data

    Hi ive set up a form which shows a number of subforms..the subforms are linked to the same table and when entries are added i need these to grow to shwo the new data... from what i remember this is possible (although me be thinking of a report) and have set them to grow on the form itself and...
  12. D

    Filter By Form on a Linked Table

    Hi all, ive set up an access db which is linked to another access db- i need to be able to filter by form on the table linked to the othera ccess db- it allows me to on the original but not on the linked table giving me: is null is not null as the options- is this possible? if so what is...
  13. D

    union query problems

    Hi all, i have this query which utlises a vb function allowing you to filter a table or query by the value of a form drop down- works great! what i now need to do is do the same on a query which combines the same data with some user added data (all fields are the same) from another table- so...
  14. D

    Referencing another table via drop down

    ive seen it done in the past but dont have an example- it didnt involve and update query... dubs
  15. D

    Referencing another table via drop down

    Hi all, have used the wizard to take values for a table dropdown field from another table the table has surname forename and class all of which reside in another table... ive tried to set up the bound columns so when you select a surname from the drop down the other two fileds also...
Back
Top Bottom