In Figma, when you override a property of an instance, what happens to the original component's property?
Think about how overrides allow customization without affecting the master component.
When you override a property in an instance, that instance uses its own value for that property. Changes to the original component's property won't affect the overridden property in that instance.
You have a button component with default text 'Submit'. You create three instances and override the text in each to 'Save', 'Send', and 'Upload'. Later, you change the default text in the main component to 'Confirm'. What text will appear in each instance?
Overrides protect instance properties from changes in the main component.
Since all three instances have overridden the text, they keep their custom text. Changes to the main component's text do not affect overridden properties.
Imagine a dataset of component instances with a column 'IsOverridden' (TRUE/FALSE). You want to calculate the percentage of instances that have overridden properties.
Which DAX measure correctly calculates this percentage?
Use DIVIDE to avoid division by zero errors and CALCULATE to filter rows.
Option A uses CALCULATE to count overridden instances, divides by total instances, and uses DIVIDE to safely handle division.
A DAX measure to count overridden instances is written as:
OverrideCount = COUNTROWS(FILTER(Instances, Instances[IsOverridden] == TRUE()))
Why does this measure cause an error?
Check the syntax for comparison operators in DAX.
DAX uses a single '=' for comparison, not '=='. Using '==' causes a syntax error.
You want to create a dashboard that shows how many instances have overridden properties and how those overrides affect component usage over time.
Which visualization setup best communicates this information?
Think about combining categorical and time series data for clear insights.
Option B uses a stacked bar chart to compare overridden vs non-overridden counts over time, and a line chart to show overall trends, making it easy to see impact and usage.