Search results

  1. G

    Question Using IIF Statements in Access

    The data will be eventually be displayed on a report and in a form. How can I create this in a form / report ? Thanks
  2. G

    Question Using IIF Statements in Access

    This database is in it's early stages so I'm thinking of just scrapping it and starting again. If I were to start again what would be the best way to have 3 columns 1. Date Checked 2. VIP Pass or fail 3. VIP Fail date. What I need is for the 'VIP Fail date' field to be populated with a...
  3. G

    Question Using IIF Statements in Access

    It just keeps coming up with 'Data Type Mismatch' when ever I try and run it
  4. G

    Question Using IIF Statements in Access

    SELECT [Standards Check record].[Date Checked], [Standards Check record].[VIP PASS 1], [Standards Check record].[VIP Fail date] FROM [Standards Check record] WHERE ((([Standards Check record].[VIP Fail date])=IIf([VIP PASS 1]=False,DateAdd("d",90,[Date Checked]),"")));
  5. G

    Question Using IIF Statements in Access

    Hi, Still no joy
  6. G

    Question Using IIF Statements in Access

    Thanks for the reply. It still doesn't populate the VIP fail date field
  7. G

    Question Using IIF Statements in Access

    Hi, I've tried it with 0 aswell but still no joy.
  8. G

    Question Using IIF Statements in Access

    Thanks for getting back to me again Paul, What I need to happen is that when we check one of the vehicles in our fleet we enter the date it was checked into the 'Date Checked field'. If we then decide it is not fit for VIP work we will select 'No' in the 'VIP Pass' field which will then...
  9. G

    Question Using IIF Statements in Access

    SELECT [Standards Check record].[Date Checked], [Standards Check record].[VIP PASS 1], [Standards Check record].[VIP Fail date] FROM [Standards Check record] WHERE ((([Standards Check record].[VIP Fail date])=IIf([VIP PASS 1]=No,DateAdd("d",90,[Date Checked]),"")));
  10. G

    Question Using IIF Statements in Access

    How do I do that ??
  11. G

    Question Using IIF Statements in Access

    Hi Paul, its stays blank when the Vip pass is false aswell. Vip pass is linked to another table which gives it it's 'yes' or 'no' values
  12. G

    Question Using IIF Statements in Access

    Thanks again Paul, sorry about the delay in replying. I've tried the IIF statement you gave me but when I run the query the VIP Fail date is blank Any ideas ???
  13. G

    Question Using IIF Statements in Access

    Thanks for the response Paul. I have used a Query and attempted to create this myself using the 'build' function but I'm not getting very far. The field I mentioned are all from the same table I'm just struggling to create the correct IIF statement in my query.
  14. G

    Introduction

    Thanks pr2-eugin
  15. G

    Question Using IIF Statements in Access

    Hi, I am new to access and I'm having a little trouble using IIF statements. I have a field in my Access table named 'Date Checked' a one named 'VIP Pass' and a one named 'VIP Fail date'. What I am trying to do . . . If the answer in the 'VIP Pass' field is NO I need the 'VIP Fail Date'...
  16. G

    Introduction

    Hello, just joined today hope I can get some much needed help !!!
Back
Top Bottom