ATTRIBUTES

Returns an array of all valid formula attributes on the object. If no argument is provided, defaults to ATTRIBUTES(THIS).

πŸ“˜

The examples shown below may not include all attributes. For an accurate result use the formula in editor.

Syntax

=ATTRIBUTES

=ATTRIBUTES(items)

Arguments

ArgumentTypeDescription
itemsReference or ArrayThe item or items to return attributes for

Examples

=ATTRIBUTES β†’ [id, itemcreatedby, itemcreatedtime, itemlastmodifiedby, itemlastmodifiedtime, tags]
When the selected block is a StickiesStickyNoteBlock

=ATTRIBUTES(swimlaneBlock) β†’ [contents, id, itemcreatedby, itemcreatedtime, itemlastmodifiedby, itemlastmodifiedtime, lanes, orientation, tags]
When the provided block is an AdvancedSwimLaneBlock

=ATTRIBUTES([block1, block2]) β†’ [[contents, id, itemcreatedby, itemcreatedtime, itemlastmodifiedby, itemlastmodifiedtime, tags], [id, itemcreatedby, itemcreatedtime, itemlastmodifiedby, itemlastmodifiedtime, tags]]
When the provided blocks are DefaultSquareBlock and PillContainerBlockV2

=this.$itemlastmodifiedtime β†’ Aug 23, 2024 9:49 AM

To sum the total number of story points for a container or subcontainer through a connected line

=SUM(CONNECTED.$contents.$estimate)β†’ 10

To sum the total number of story points for a container or subcontainer directly on the container

=SUM(this.$contents.$estimate) β†’ 10

To filter the contents of a container or subcontainer by type

=FILTER(this.$contents, x => x.$issueType.'name' = 'Task') β†’ [...]

To sum the total number of story points for a container or subcontainer by type

=SUM(FILTER(this.$contents, x => x.$issueType.'name' = 'Task').$estimate) β†’ 7

To sum the total number of story points for a subcontainer by type and display it on a sticky note within the the same subcontainer (ex: sticky note within a column of a Dynamic Table)

=SUM(FILTER(CONTAINEDBY($COLUMN).$contents, x => x.$issueType.'name' = 'Task').$estimate) β†’ 5


Did this page help you?