Forum Discussion
MFCQB_Admin
Qrew Member
I would like to know if this is possible too. EddyElasmar did you ever solve this issue?
MarkShnier__You
8 months agoQrew Legend
A connected Syncc table does not Sync acress files atatchment. But you can make a Rich text formula field to gove the user the appearance of a file attchment whihc they can click on
Basic setup for a Rich Text field
var text Words = ToText([File name field]);
var text URL = URLRoot() & "up/" & "xxxxxxxxx" Dbid() & "/a/r" & [Record ID# of the source table] & "/e99/v0";
"<a href=" & $URL & ">" & $Words & "</a>"
// replace the 99 with the fid of the file attachment field in the source table.
// replace the xxxx with the table code
Feel free to post back if you get stuck.