Forum Discussion
MCFNeil
9 years agoQrew Captain
Create a new field, Formula-Text, and call it something like "Image"
Insert this formula with a few modifications:
The changes you will need to make are the "e41", change that to the field id of your file attachment field...
"eXX"
I put a conditional If statement to make it blank if the file is empty, so change the field [Picture File] to your file attachment field.
You can also control the size/height of the image
Let us know if you get stuck.
Insert this formula with a few modifications:
If([Picture File]="","","<img height=\"80\" src=\"" & URLRoot() & "up/" & Dbid () & "/a/r" & [Record ID#] & "/e41/v0\" />")
The changes you will need to make are the "e41", change that to the field id of your file attachment field...
"eXX"
I put a conditional If statement to make it blank if the file is empty, so change the field [Picture File] to your file attachment field.
You can also control the size/height of the image
Let us know if you get stuck.
AaronZielinski
9 years agoQrew Cadet
Thanks!