Yes, that's what I'm trying do. The field that has the "\files\pdf\abc.pdf" is Mlink and the unbound field is Text95.
So, what do I replace for YourFieldNameGoesHere. What goes where? I'm putting the code in a command button.
I have a field on a form that has a value of "\files\pdf\abc.pdf
How can I create an unbound field that takes just the "abc.pdf" value and combines it.
I want the new field value to look like this: www.abc.com/abc.pdf
="www.abc.com/" & "abc.pdf"
I'm using the following.
Report ID: IIf([Msamplenumber1] Like "*H*" Or [Msamplenumber2] Like "*H*","In Progress",[Mreportid])
How can I add if Mreportid is null, then "Empty" to the above statement?
Thanks
How would I combine these statements? Default for image1 is not visible.
If Me.Mdid = "ABC123" Then Me.image1.Visible = True Else Me.image1.Visible = False
If Me.Mdid = "DEF123" Then Me.image1.Visible = True Else Me.image1.Visible = False
If Me.Mdid = "GHI123" Then Me.image1.Visible = True...