Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ali32uk

    Check if date is 1st of the month

    OK thanks i understand
  2. ali32uk

    Check if date is 1st of the month

    I ve tried the code, unfortunately it does nt work, even if I select 1st of month its still picks up the else function Ali
  3. ali32uk

    Conditional Formatting to Date Range

    Hi All I m trying to use conditional formatting on a textbox on a continuous form, to find if the TxtMonth Date value is between Startdate and enddate date values, as below: Problem i m having is that it only checks if the day value is between day values of startdate and enddate, so for...
  4. ali32uk

    Check if date is 1st of the month

    Thank you will give it a try
  5. ali32uk

    Check if date is 1st of the month

    Hi All I m hoping this is simple one.. I just want to check if the date entered is 1st of the month, if not display a msgbox for user to correct? Appreciate your help thank you Ali
  6. ali32uk

    Enter new date based on record plus combo record

    Thank you for your help!
  7. ali32uk

    Enter new date based on record plus combo record

    Hi All thought this would be simple, turns out for me its not... I m trying to do the following I have a "Startdate" field on a form, and a combo box "comboMonths" and an enddate field, based on the user choosing a date in startdate and then selecting either 3, 6 or 12 from the combo box, I m...
  8. ali32uk

    If between 2 dates then colour text box

    sorry I should add, I m looking to repeat this for different date so If StartDate falls between 01/11/2015 and 30/11/2015 then change the back colour of a textbox to red elseif StartDate falls between 01/12/2015 and 31/12/2015 then change the back colour of a textbox to red elseif StartDate...
  9. ali32uk

    If between 2 dates then colour text box

    Hi All Apologies but I dont know where to go with this, I just want to do an if statement which says if StartDate falls between 01/11/2015 and 30/11/2015 then change the back colour of a textbox to red can any one help?? I m a bit out of practice and not done coding for many years... so you...
  10. ali32uk

    create 5 new records and enter values on form open

    Hi All I m looking for a little help with an access DB I m creating, it has a sub form called SubPromotedProducts, on opening the the master form Step2_AssetAssignment, I d like 5 new records to be entered into the subform automatically, as below this image shows the desired result, so 5...
  11. ali32uk

    Continuous Form BackColor issue

    Hi I would appreciate anyone's help with this I have a continuous form which I m using the backcolor function to change a text box [Order_Frequency_100] color based on the value in another textbox [Rating100] Code: Private Sub Form_Current() If Me.Rating100.Value < 4.5 Or...
  12. ali32uk

    Filter 6 months with end date of the end of the last full month

    Hi I m using the following as criteria in my query Between DateAdd("m",-12,Date()) And DateAdd("m",-6,Date()) which works great but does nt quite do what i m looking for. this takes from the current date, ideally what i want is from the last full month, i.e. today is 28th July, so it filters...
  13. ali32uk

    update all table records to value in a combo box

    HI thanks for your response I ve tried this but unfortunately it just places " & TxtRecordvalue & " in the table field... am I doing something wrong? SQL UPDATE ExportTable SET ExportTable.recordvalue = '" & txtrecordvalue & "'; BR Alastair
  14. ali32uk

    update all table records to value in a combo box

    Hi All Last question for today... I want to use an update query to update every value in a table column "recordvalue" to the value entered in my form TxtRecordvalue, I know I should know this but for the life of me I cant figure it Any help appreciated! Alastair
  15. ali32uk

    IF Day element is not 01 then change to 01

    Perfect thankyou, it just the way its needed for person its being outputted too
  16. ali32uk

    IF Day element is not 01 then change to 01

    HI I have an update query which has 5m lines, one of the columns is a date column, what I d like to do is change the day part of the date to be 01. for example Current Afterupdate 26/12/2014 01/12/2014 27/10/2014 01/10/2014 18/02/2015 01/02/2015 27/10/2014 01/10/2014 07/11/2014...
  17. ali32uk

    Using pop up form to populate latest new record of a continuous form

    Hi All I have a fairly simple continous form which I am using for contacts, this is embedded subform (subformcontacts) into a master form (customer) so I have a customer and the subform i populate with contacts for that customer. In some cases a contact can be in multiple customers, I was...
  18. ali32uk

    multiple lookup percentage match

    Hi I m looking for some help, I have 2 tables which hold list of items. table 1 as below ReqID Item A001 acb11 A001 200011 A001 10011 A001 a1221 A002 1-11122 A002 2266859 A002 ab2112 A002 R441 A002 1-33244 A002 ACB12 Table 2 as below QuoteID Item X01 acb11 X01 200011 X01...
  19. ali32uk

    append and delete query showing different results

    Hi All this is really confusing and me and cant figure the reason.. I have 2 queries - an append query and a delete query, they are exactly the same other than the type (append/delete) I even copied the append query and just changed the type once copied... So my question is why are they...
  20. ali32uk

    Update query to replace everything after comma

    Great thank you had to make a few changes to existing where statement, but worked great

Part and Inventory Search

Back
Top