Forum Discussion
MarkShnier__You
Qrew Legend
9 hours agoTry this syntax as a formula Rich Text field. It should defeat the known image caching issue that Quickbase has as long as the file name changes if the user uploads a new file to replace one they just uploaded.
"<img src=" & URLRoot() & "up/" & Dbid()
& "/g/r" & QB32Encode([Record ID#])
& "/e" & QB32Encode(12) // 12 is the fid of the file attachment field
& "/va/" & URLEncode([Picture]) // my file field is called [picture]
& " width=30>" // adjust the width or alternatively use the parameter "height=30 .... instead