Which of the following best describes how to create a new text box in Figma using the Text tool?
Think about how you start typing text in Figma.
Clicking the Text tool and then clicking on the canvas creates a point text box where text flows horizontally without fixed width.
Given a sales table with columns Region, SalesAmount, and Date, which DAX measure correctly calculates total sales only for the 'West' region?
Sales West = CALCULATE(SUM(Sales[SalesAmount]), Sales[Region] = "West")Remember that CALCULATE expects filter expressions or filter tables.
Option A correctly uses CALCULATE with the filter expression Sales[Region] = "West". This is standard DAX syntax for filtering. B and D also work but are more verbose; C uses invalid syntax.
You want to show how sales change month by month over the last year. Which visualization type is best suited for this purpose?
Think about which chart type best shows changes over time.
A line chart is ideal for showing trends over time because it connects data points in chronological order.
What error will this DAX measure produce?Total Sales = SUM(Sales[Amount]) + FILTER(Sales, Sales[Region] = "East")
Check the types of values SUM and FILTER return.
SUM returns a number, FILTER returns a table. You cannot add a number and a table directly, causing a type error.
You are tasked with creating a sales performance dashboard for executives. They want to see total sales, sales by region, and monthly sales trends all on one page. Which combination of visualizations and layout best meets these needs?
Think about clarity and ease of comparison on a single dashboard page.
Option C uses appropriate visualizations and layout for clear, quick insights: card for total sales, bar chart for region comparison, and line chart for trends.