Recent content by weilerdo67

  1. W

    If Statement with multiple veribals

    Ok, that got me closer. It works for the >100 and the >32 it shows those correctly now but the <32 is still showing the wrong image. Here is the code I used from arnelgp Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) [img36].Visible=False [img32].Visible=False...
  2. W

    If Statement with multiple veribals

    Hi, Thanks for the replies I tried this and its showing all of the images. Is it because I dont have a False value? If Me.AvgOfTemp < 32 Then img40.Visible = True ElseIf Me.AvgOfTemp > 100 Then img36.Visible = True Else img32.Visible = True End If The...
  3. W

    If Statement with multiple veribals

    Hi, I think im doing this wrong and Im hoping someone can help me. I have a report that I want to have an image show depending on the value of a field. ON the report I have a field called AvgOfTemp and what I need is if the temp is greater the 100 show img36 if the temp is between 32 and 100...
Top Bottom