We introduced a new feature - the ITEMVALUE() reference formula that returns the value from a specific field of an item or subitem from any board.

ITEMVALUE(column_name, [item], [board_id])

  • column_name - Column title or column ID to retrieve the value from the target item.
  • item (optional) - Item name or item ID. In Item View, the current item is used when omitted.
  • board_id (optional) - Board ID. When provided, it overrides the current board context.

Examples:

=ITEMVALUE("Status", "Task name")

=ITEMVALUE("Amount", 1234567890, 987654321)