Jun 27, 2018 01:58 PM
Hey, I have two tables (active projects, biz dev projects) and I’m trying to create a tasks table. I want to have one column titled “Projects” and want to link this column to both active projects and biz dev projects. How do I do that?
Thanks.
Jun 27, 2018 02:29 PM
Short [non-]answer: You can’t. :winking_face:
Longer, [potentially] helpful answer:
[Tasks]
table two linked-record fields, {Active Projects}
and {Biz dev projects}
, linked to the appropriate tables.{Projects}
, with the following formulaIF(
{Active Projects},
{Active Projects},
{Biz Dev Projects}
)
Note that you won’t be able to drill through from [Tasks]
to the underlying project record by selecting on a value in {Projects}
; you’ll have to select a record from the appropriate linked-record field. For other uses — reporting, tracking — you can hide the contributing fields to reduce visual clutter.
Jun 27, 2018 02:32 PM
What is the reason why you can’t have both project types together?
Jun 27, 2018 02:39 PM
AFAIK, a linked-record field must ‘point’ to records from a single table.
Jun 28, 2018 12:59 AM
I mean, in the same Table with a SingleSelect field called Type.
Jun 29, 2018 06:54 AM
Oh, you’ll have to ask the original poster. :winking_face: I’m assuming the record structures are different: Hence the separate tables…
Jun 29, 2018 07:18 AM
I’ve asked him. A lot of users create separate tables with no need.