Recent content by JudyK

  1. J

    Make Image field disappear if null value

    Thank you so much for providing help. I can't thank you enough. It worked flawlessly. My understanding of code is limited at best and I really appreciate you taking the time to help me. Kind regards, JudyK
  2. J

    Make Image field disappear if null value

    I have an image field on a report that keeps showing up even if the field value is null. =IIf(IsNull([Image_tbl4mgr21]),"",[image_tbl4mgr21]) Any idea how to make the white space completely disappear when that image field is empty? Judy
  3. J

    DOB calculation in Table

    I have a [DOB] field with birth dates. I have another field [DOBExp] where I want to automatically calculate at date 15 days out, but exclude weekends and holidays. I have a separate table listing the holidays. Would like a formula to use in my first table for this. Have no clue how to do...
  4. J

    Make field with Image disappear if empty

    The name of my Image box is field [Image] from my tbl2DR table. This is what I have in that code: Me.Image.Visible = Not IsNull([tbl2DR.Image_tbl2DR]) If IsNull([tbl2DR.Image_tbl2DR]) Then Me.Text1190.Left = 0 Else Me.Text1190.Left = 550 End If
  5. J

    Make field with Image disappear if empty

    The name of my actual image is "Image" from table "tbl2DR". I'm getting the following error message now and maybe it's because I didn't do the line items right below. Message say: The Expression On format that you entered as the event property setting produced the following error: Can't...
  6. J

    Make field with Image disappear if empty

    Ok - I did that. Got a Compile Error: method or data member not found It highlighted the ".Visible ="
  7. J

    Make field with Image disappear if empty

    Yes I am there now.
  8. J

    Make field with Image disappear if empty

    It's saved in the table.
  9. J

    Make field with Image disappear if empty

    =IIf(IsNull([Image_tbl2DR]),"",[Image_tbl2DR]) This is what I'm using in my image box. It sits by itself to the left of the 2 text box lines. Those textbox lines also have the IsNull in them so they disappear when they are empty. The image box still shows up.
  10. J

    Make field with Image disappear if empty

    It says 555.
  11. J

    Make field with Image disappear if empty

    Ok, I found it. So now I have a text box for my image field and the syntax you gave me in the on-load part. Now what?
  12. J

    Make field with Image disappear if empty

    I couldn't find where the Load event was.
  13. J

    Make field with Image disappear if empty

    Sorry. I have no idea what that means.
  14. J

    Make field with Image disappear if empty

    0.6875 inches
  15. J

    Make field with Image disappear if empty

    Image_tbl2DR
Back
Top Bottom