Concept Flow
[Create components] → [Assign versions] → [Set status (Draft/Published)] → [Publish library] → [Maintain updates]
This flow shows how components are created, versioned, and published in a Figma library, then maintained over time.
[Create components] → [Assign versions] → [Set status (Draft/Published)] → [Publish library] → [Maintain updates]
COUNTIF(C2:C4, "Published")This formula counts how many components in the Status column are marked as 'Published'.
| Step | Expression | Evaluates To | Explanation |
|---|---|---|---|
| 1 | Check C2 value 'Published' equals 'Published' | TRUE | C2 is 'Published', so it counts as 1. |
| 2 | Check C3 value 'Published' equals 'Published' | TRUE | C3 is 'Published', so it counts as 1. |
| 3 | Check C4 value 'Draft' equals 'Published' | FALSE | C4 is 'Draft', so it does not count. |
| 4 | Sum TRUE values (1 + 1 + 0) | 2 | There are 2 published components. |
| Variable | Value |
|---|---|
| C2 | Published |
| C3 | Published |
| C4 | Draft |
| Count of Published | 2 |