Search results

  1. S

    Call for matching data

    Hi Paul, Following your advice, I may be getting there but encountered some catches seeking your further advice. I attached a sample file to illustrate the situation. I successfully called the data from vlookup table but not the last row. Secondly, I repeated the method for the column...
  2. S

    Remove old duplicates

    Thanks for your prompt advice! Removing duplicates can be achieved as per the said feature. However, it has a challenge to leave the latest one, not any one.:confused:
  3. S

    Remove old duplicates

    I would like to remove the old duplicates leaving distinct list with the latest info. Can someone help advise the way to accomplish it. sample file is attached for reference. Thanks!
  4. S

    Call for matching data

    Paul, Thanks for your advice!
  5. S

    Call for matching data

    I have two spreadsheets: A sheet contains sku no, unit price and other details of each sku no and B sheet contains sku nos and order quantities of last month. I need to get the details of skus from sheet A into matching skus in sheet B for further analysis. Can someone advise me how to...
  6. S

    Validation rule

    Hi CJ, Could you please advise what the below two statements do especially "between 1 and 50" Select Case Company case company between 1 and 50 Thanks!
  7. S

    Validation rule

    Hi CJ, I tried to modify the code as below but still not working. Your further help is greatly appreciated. Private Sub txtSKU_Enter() If Me.Brand like “*GoGo*” Or Me.Brand like “*Mango*” Then txtSKU.ValidationRule = ">=0000001 and <=9999999" txtSKU.ValidationText...
  8. S

    Validation rule

    Hi CJ, I believe Company is the check field to determine the validation rule. I update the 2nd row of statement to case company like "*Sony*" Select Case Company case company between 1 and 50 It did not work as intended and always applied case else validation rule. Is there...
  9. S

    Validation rule

    I have a validation rule in a control of form: between 1 and 999999. Now I need to have different criteria subject to the value of other control, say between 1 and 9999999 if the value of A company in company control. Is it beyond the capability of validation rule? If so, any other idea to...
  10. S

    Check if all required fields have been filled

    Hi The_Doc_Man, Many thanks for your good advice that I might neglect it in the past. It is good for practicing it again.
  11. S

    Check if all required fields have been filled

    Thanks for your advice. I have got a reference sample to achieve what you said. However, when I completed the project, the remaining mandatory fields must be filled as well. How can the system to check if the mandatory fields have been filled when the project is completed?
  12. S

    Check if all required fields have been filled

    Hi Dennis, Yes, the form is linked with a query.
  13. S

    Check if all required fields have been filled

    Below should read as the example given.
  14. S

    Check if all required fields have been filled

    Thanks for your response. There is a reason for the check that put in this field. The data is entered while the progress from the beginning to the end. When the project is completed, this field must be completed as an end of the project. The check cannot be put in the form, otherwise the...
  15. S

    Check if all required fields have been filled

    I tried to check if all required fields have been filled before saving the record using the following code. Private Sub txtReportNo_BeforeUpdate(Cancel As Integer) If IsNull(Me.cboMainCat) Then Cancel = True MsgBox ("Please enter Data for Main Cat")...
  16. S

    Multiple select list box

    Hi spikepl, I need the help to show all records when I do not select any names in the listbox and select other report format based on current listbox form.
  17. S

    Multiple select list box

    Thanks for your suggestion. I will try it later.
  18. S

    Parameter query

    Hi Paul, I now understand your suggestion fully and tried it successfully. Many thanks!
  19. S

    Multiple select list box

    Hi Ranman256, Thanks for your suggestion. I have not set up the pick table yet. Is it complicated to it setup? Any further reference to set up this feature. Thanks!
  20. S

    Multiple select list box

    Currently I am using a multiple select list box in a form to select the engineer names for a report. I am looking for some enhancement. Firstly when I do not select any name, there is no records displayed. I need to show all records if I do not select any name in the dropdown list. I...
Back
Top Bottom