Hello,
I am trying to improve my gallery, and was wondering what would be the correct syntax for "Visible" in a Gallery text label. I currently have a Gallery that show the "Created" date. I am wanting to add another text label that will only be visible if the form has been Modified that will show the Modified Date info. I don't want both "Created" and "Modified" to be visible at the same time because it might cause confusion.
Label36 = Modified
DateCreated_2 = Created
I've tried:
If(Label36 <> DateCreated_2, true,false)
If(Label36 < DateCreated_2, true,false)
Is there a way to only make the Gallery text label "Modified" visible "IF" the form is modified?
Thanks,
rail