Search results

  1. L

    Form Date Field Less than Form Date Field 2 + 30 days

    I have 2 date fields in a subform and code that if [Date_Field1] < [Date_Field2] it displays a hidden button . this works but i would only like the button to show if [Date_Field1] < [date_Field2] +30 days. Cant get the code to work by adding +30. where am i going wrong? Thanks.
  2. L

    Conditional Formatting Issue

    yeh can see this working.. for some reason when i choose a filter or reset it back to original query i lose the conditional formatting. i f i use a solid colour and not the bar its fine. must be something to do with how it compares the record set. i will default to a solid bar. this works.
  3. L

    Solved Filter Dates by 1 month from today, 2 months from today etc

    In the end ive gone with RanMans Pointer. Why i never thought of this ??? worked a treat. Thanks again and thanks to Gasman for you input.
  4. L

    Solved Filter Dates by 1 month from today, 2 months from today etc

    I am looking to filter a date field by month based on a form. I have a combo box with 1 Month, 2 Months, 3 Months, 6 Months, 12 Months. If i choose 1 month on the form i would like all records from todays date to next month. If i choose 2 months on the form i would like all records from today...
  5. L

    Conditional Formatting Issue

    I have an issue with conditional formatting. This is a simple rule when the field is populated with a number upto 100, it has a green bar that goes up based on the value. works fine when i open the continuous form but if i then use any filter buttons, the conditional formatting doesn't work...
  6. L

    Append Query to 2 tables

    yeh did think of this. table_1_ID is autonumber and table_1_Cont is not. so when table_1 creates the ID how do i get table_1_Cont to populate the ID field with the newly appointed ID but take the data from the copied ID.
  7. L

    Append Query to 2 tables

    I am looking to append to 2 tables based on data from an existing record. Due to the amount of fields i have had to spread data over 2 tables Table_1 and Table_1_Cont. Table_1_Cont is populated via a subform linked By ID to the mainform so when data from Mainform gets populated to table_1, data...
  8. L

    Update Query with percentage value

    Not quite that simple... i have a text field on the form labelled " increase rates by %" how do i reference the query to this.. tried * 1.0 & Forms!aaaaa obviously the wrong syntax.
  9. L

    Update Query with percentage value

    Yes Yes Yes... I have a template table and an append query that populates a rates table with start and end dates.. all i need to do is add a percentage increase to the templates table.
  10. L

    Update Query with percentage value

    quite a lot.. lots of rates lots of jobs lots of stuff going on.:D
  11. L

    Update Query with percentage value

    where in this code does it reference the table to be updated..
  12. L

    Update Query with percentage value

    ideally i will have a text box on a form.. input percentage increase value, hit the button to run the query and update the data.
  13. L

    Update Query with percentage value

    I have a rates table with different fields for standard, overtime, weekend etc.. We have an increase of say 2% on all rates across the board. how can i create an update query that can increase all Rates by 2%. Any help is appreciated.
  14. L

    AO Index is not an Index in this Table

    Both 32Bit
  15. L

    AO Index is not an Index in this Table

    Whenever i Compile and repair my front end i get error half way through.. "AO Index is not an Index in this Table" i click ok and find most of my table links, forms and some queries have gone. the database is then unusable. luckily i have a backup before the compile and repair so can restore...
  16. L

    Importing to a word Bookmark

    May be a stab in the dark but it worked a treat.. :)
  17. L

    Importing to a word Bookmark

    I have a query data that imports into a word template using bookmarks. What would the syntax be to import date field as long date.. currently defaulting to general date on the word doc but long date on the query. WDoc.Bookmarks("Client").Range.Text = Nz(rs!Client, "")...
  18. L

    DateSerial Anniversary Dates

    Got it working. Thanks for your help much appreciated!!
  19. L

    DateSerial Anniversary Dates

    Genius! works a treat. is there an easy way to change the formatting date... currently displays as 1/1/2019.. no option to change format to Medium date.
  20. L

    DateSerial Anniversary Dates

    Feb 29th has never come up :) Example: Anniversary Date: 26th April 2012 Client has 6 records in a Sub report last record was created 2018 with a completed date field of 17th April 2018 so Due Date should be 26th April 2019 but DateSerial looks at anniversary date and returns next years date of...
Back
Top Bottom