Search results

  1. M

    Form Visible True/False Set Focus issue results in 2018 error

    I have three tabs which the visible setting is driven off of three other fields one field drives each tab. I was running into an issue while going through each record where it could not hide a field that had current focus. I noticed this happens when i try to click through records rather...
  2. M

    Form Module Visible Yes/No Question

    I am trying to learn modules and while some of them tend to work others dont. I assumed you could per say nest different functions within a module without issue but advice and input is suggested as to any help to be provided. Option Compare Database Private Sub Form_Current() Call...
  3. M

    vba on focus/lost focus help

    VBA as listed Private Sub IndStatmentHandwrittenComment_BeforeUpdate(Cancel As Integer) If Forms!WindOptOutV12.IndStatmentHandwrittenComment = "" Or Null Then MsgBox "Please Enter a Comment Below for Deviations listed as OTHER" Else End If End Sub I have a field above this where if the...
  4. M

    Referencing an item inside a tab control

    I have tried to find something on the web but maybe I am not searching for the right term(s). I basically setup a .visible logic statement driven off of one field when it is yes or -1. This works perfectly so I cut and pasted into the tab. Needless to say it doesnt work anymore. I even cut...
  5. M

    form vba assistance on if statement

    I am new to vba so still learning and reading up. I currently utilize the below. This works fine however when i click new records in the split form view or go to next record if the Y is met the first time all records after that are invisible until i go back to the record i changed and alter...
  6. M

    unbound list box selection/filtering

    I borrowed and modified this listbox to be able to view and select records and bring them up in the main form. However projects should be defined 1-5 5 being complete. I am trying to filter the listbox view of the 5s if there were any by a selection of a button so that when selected all 5s are...
  7. M

    formula help

    I know you can nest a limited number of if statements but not sure what i am missing to get this work. I am ranking items based on a list but want to omit that item from being ranked if another associated cell equals 100%. I hope this makes sense this formula works...
  8. M

    report field size unbound and bound

    I currently have about 20 fields on a report some with varying txt length so the box it is in changes size. Next to that column i have a set of unbound boxes for later use that are empty for user comments outside of the db. Is there a way to link an unbound field to a bound field so that when...
  9. M

    Report Questions and basics

    I didnt get much of a response last time so i figured i will try to restate this. I have one main table with 20 other tables that are linked depending on a user selection. I will basically have 30+ reports one to two per table based on a user selection from the main table. ie who the data...
  10. M

    Two forms in one subform and table relationships.

    A few questions. Is it possible through a query in the subform property to reference two different tables without issue? The reason i ask is once i do this none of the items in my subform show when the subform is called up. Maybe the problem is how i have the relationship setup. I have...
  11. M

    help with an array/dcount formula

    As i am not a vba pro I am trying to do this within excel as a formula. You can see the summar sheet up front and the data is on the second tab. I am trying to pull from the line of business ex crm prw and transaction type. where transaction type 1 =new 2 = renewal etc. on the second tab i...
  12. M

    form selectively displays subform items

    I have attached a copy of the db. You can scroll through the items and even search within the policy field and note that only one policy number pulls the subform info up which is confusing me as to why the rest arent. The policy number is 1092467. If you look at the tables the data is there...
  13. M

    form wizard help

    i tried to search this but wasnt sure on the phrase to search by. My issue is I have about 20 individual forms each which are unique to a table and those tables unique to one parent table. I have created a main form which pulls the universal items from the main parent tbl and matches based...
  14. M

    Form Command button issues.

    The issue i have is upon opening my form the command buttons will not locate previous records however once you input a new record it will allow the function to search and the previous and next record buttons to work(but they still dont show previous records). Once the form is closed and...
  15. M

    help with form and error msg Add Or Change A Record Because A Related Record Is Requi

    This is one of my bigger dbs that i have created. Most contain one to two tables without much issue as the form has always referenced one table. I think my issue arises from the table being empty and trying to save so after trying to force a null value the error still pops up. Is there a...
Top Bottom