Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
A sync table can only have 1 source. But you could have 20 Actions on 20 tables to create a record in the centralized table. The centralized table can have a formula to link back to the original document such that wen clicked, it will display the file attachment even though the file attachment is not actually on the centralized table.
QuickBaseCoachD
7 years agoQrew Captain
The formula URL to display a clickable link to a file attchment in another table is like this
URLRoot() & "up/" & [_DBID_PROJECTS] & "/a/r" & [Related project] & "/e30/v0"
Replace e30 with e and fid of the field holding the file attachment. The v0 just says to always show the most recent version if the attached file.
.
URLRoot() & "up/" & [_DBID_PROJECTS] & "/a/r" & [Related project] & "/e30/v0"
Replace e30 with e and fid of the field holding the file attachment. The v0 just says to always show the most recent version if the attached file.
.