I have created a form within Access, which allows susers to select different kinds of reports. But I need a validation check where by if the user has selected from One field (Exposure Descr id) but has not selected the business area (BusinessAreaID) then I want a message box to tell the user to go back and select the business area. Currently the code I have is shown below. This does not work.
If Me.Exposure_Descr_Id > 0 And Me.BusinessAreaId <> " " Then MsgBox "Please Select a Business Area as well as the Exposure Description before Pressing the Exposures Button"
thanks
Guv
If Me.Exposure_Descr_Id > 0 And Me.BusinessAreaId <> " " Then MsgBox "Please Select a Business Area as well as the Exposure Description before Pressing the Exposures Button"
thanks
Guv