Search results

  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
  16. J

    Make field with Image disappear if empty

    I would only need 2 moved to the left (person's name & title row) and (orgname row). The other ones are individual set to line up with their particular categories so they would not move.
  17. J

    Make field with Image disappear if empty

    See attached. If a person does not have an image, I would like the text to be left aligned, otherwise it should show the image to the left and the text should be left aligned to the right of the image.
  18. J

    Make field with Image disappear if empty

    How are these?
  19. J

    Make field with Image disappear if empty

    PS -- I have no idea where to find the SQL.
  20. J

    Make field with Image disappear if empty

    Ok -- here you go. The manager image that I have on the print preview is fine. It's the medium blue section that I want to include a picture for that level of manager.
Back
Top Bottom