Recent content by nine

  1. N

    PivotCharts

    Well, I'm confused. I diddnt know there was any kind of chart apart from a form which has its default appearance set as chart (which was what was in the example). But I found what you were talking about, and I can't seem to get thet to get what I want either - it keeps trying to put East, West...
  2. N

    PivotCharts

    Any ideas?
  3. N

    PivotCharts

    Bump. I've attached an example to show what I mean.
  4. N

    PivotCharts

    Ok, I'm trying to create a line graph, with date along the bottom axis, and balance along the left axis. However, when I do this, it shows the dates properly, but all values are at zero. I'm not sure why it's doing this. I've tried diffrent combinatons, but I cannot seem to get it to do what I...
  5. N

    Calculated balance field

    It works flawlessly. Thank you very much!! You have no idea how crazy this was driving me, and, of course, the solution was painfully simple :p. I really appreciate the help you, and GumbyD gave me. Thanks!
  6. N

    Calculated balance field

    Ok, I've had ago with that, and it doesnt quite work properly. When I tried it with account 1, I got this: £0.00 £30.00 £20.00 £10.00 When I should have got this: £10.00 £30.00 £20.00 £30.00 and I'm not sure how you got that result:).
  7. N

    Calculated balance field

    Thanks, but I'm not sure how you are trying to do this. I have attached a cut-down version of my database, with a few queries that I've tried: qryTrans: The code I posted earlier. It works, but it carries out the balance for all users. qryTrans2A&B: This does exactly what I need it to do, but is...
  8. N

    Calculated balance field

    I have a banking system, and I need to be able to show the balance as each transaction is made. This is what I have so far: SELECT tblTransactions.lngTransactionID, tblTransactions.lngAccountID, tblTransactions.datDate, tblTransactions.txtType, tblTransactions.curAmount, (SELECT...
  9. N

    Date of this monday

    Thanks! The first one was what I wanted; the date of this week's monday.
  10. N

    Date of this monday

    How can I find out the date for whichever the date is of this monday. So, if today is 23/03/2006, then it would give 20/03/2006, which was the date of this monday. Thanks for any advice.
  11. N

    Refrencing a combobox's values

    Thanks for your help.
  12. N

    Refrencing a combobox's values

    How can I refrencence any value within a combobox (not the one selected)? I want to try and acheve something like this: cboSomething.Value(3) Although that doesn't work. Is this possible?
  13. N

    Returing multiple rows with single nested SELECT?

    If have this SQL statement: SELECT (SELECT tblTransactions.lngTransactionID, tblTransactions.lngAccountID, tblTransactions.datDate, tblTransactions.txtType, tblTransactions.curAmount FROM tblTransactions WHERE tblTransactions.lngAccountID=[AccID?]) AS tblTransactionsB, (SELECT...
  14. N

    Creating a running total calculated field

    Anyone? The problem (I think) is that the calculated field is run before the where condtion removes the records that I dont want to be included. Thanks for any help.
  15. N

    Data type mismatch in criteria expression. Where?

    Wow, I diddn't expect such a speedy responce. I sorted out the quotes, and now it works fine. Thanks, guys! You really helped me out.
Back
Top Bottom