Recent content by Lou P

  1. L

    Hyperlink field not working correctly in a form.

    In need of a 100 lb. MS Access brain…the problem I having is with the Hyperlink field I have in a form with Access 2010. Table Name = tblOrg Form Name = frmOrg Control Name = ctlOrgTabs Tab Name = CONTACT INFO: Hyperlink Field = OrgWebSite Is Hyperlink = Yes Display as hyperlink = If Hyperlink...
  2. L

    Find Record using a combo box on a form.

    Spike; You're correct. I removed the lookups and did the query with joins. for just the ItemType and it works... Thank you and Brian too for the help. Sorry I made it confusing, at my Access knowledge level I don't use the right terms or chasing the wrong problem. Thanks again!
  3. L

    Find Record using a combo box on a form.

    Spike; You're correct. I removed the lookups and did the query with joins. for just the ItemType and it works... Thank you and Brian too for the help. Sorry I made it confusing, at my Access knowledge level I don't use the right terms or chasing the wrong problem. Thanks again!
  4. L

    Find Record using a combo box on a form.

    SELECT [tblItem].[ITEMID], [tblItem].[ITYPEID] &" / "& [tblItem].[IMODELID], [tblItem].[ItemSerialNum] FROM tblItem; Why does it work exactly as I wanted it to in the "Query Design" not when the exact same query is run from the Combo Box?
  5. L

    Find Record using a combo box on a form.

    This is where it gets confusing, at least for me... The values are in the two foreign key fields in the table "tblItem" - "ITYPEID" & "IMODELID" which are being pulled from their respective tables with the "ItemType" and "ItemModel" fields. tblItem.ITYPEID = SELECT DISTINCTROW...
  6. L

    Find Record using a combo box on a form.

    My apologies if I haven't made it clear. The combo box I have works. The problem I am having is with the query I guess...except when I create the query from the tblItem in the "Query Design": tblItem.ITEMID tblItem.ITYPEID tblItem.IMODELID tblItem.SerialNum SELECT [tblItem].[ItemID]...
  7. L

    Find Record using a combo box on a form.

    Correct. In my case I need to see the "ItemType" the "ItemModel" and the "ItemSerialNum" to be able to select the right record. The question is how do I get the combination of information "displayed correctly" so the desired record can be selected from the combo box and then opened in the...
  8. L

    Find Record using a combo box on a form.

    Sorry if I made it confusing! No...what I want is the actual "ItemType" and "Model" (text) to be displayed, or both if I have to. You can't tell which Item Record you're selecting from the number alone. Each value is pulled from their respective tables for each "Item" record. tblItemType...
  9. L

    Find Record using a combo box on a form.

    Greetings. I am trying to use a combo box on a form (frmItem from tblItem) to find records for viewing/editing. The information appears in the combo box and it finds the correct record, but the fields "ITYPEID" and the "MODELID" are displayed as numbers. The way I set it up the "Find...
  10. L

    Update Set Value based on Max(Date)

    Re: Update Set Value based on Max(Date)...New Code Help...I've redone the code... __________________________ Private Sub LOCATION_AfterUpdate() DoCmd.SetWarnings False DoCmd.RunSQL "UPDATE tblItem INNER JOIN tblItemEvents ON tblItem.ITEMID=tblItemEvents.ITEMID " & _ "SET...
  11. L

    Update Set Value based on Max(Date)

    Greetings; Please advise if I have posted this in the wrong forum, incorrectly or haven't given the right information...TYVM Using MS Access 2010 I am tracking inventory "Items" in a database and the "Events" associated with the Items as they occur. I want the "CurrentStatus" to set to the...
  12. L

    Filter query/option group

    Filter Macro/option group Looking for assistance please. Using MS Access 2007 I'm trying to filter the [HWEvents] contained in a subform (subHWEvents) which is in a control (ctlHWEvents) on the main form (frmHW). The Record Source for the subform is a query (qryHWEvents). The Option Group...
  13. L

    Conditional Formatting Expression

    I was able to get it with the conditional formatting though... InStr(1,[HARDWARE],"Chassis") Thank You both!!
  14. L

    Conditional Formatting Expression

    I've tried both methods to bold that text in the report, and no joy! I'm sure I've defined it correctly, I've even changed the underlying alias in the query to: HARDWARE: [HWType] &" - "& [HWModel] &" "& [HWDescription] &" S/N: "& [HWSerialNum] It still doesn't see or recognize the...
  15. L

    Conditional Formatting Expression

    Thanks...I'm on travel right now & I'll try it as soon as I get back. Wouldn't HARDWARE be considered an alias in that case? In the underlying query for the report I have... HARDWARE: [HWID], [HWType] &" - "& [HWModel] &" "& [HWDescription] &" S/N: "& [HWSerialNum] Also, to get Brian's If...
Back
Top Bottom