You have a table visual showing sales data by region. You apply conditional formatting to the 'Sales Amount' column to color cells red if sales are below 1000 and green if above 5000.
What will be the visual result for a region with sales of 3000?
Think about the conditional formatting rules and the sales value 3000.
The conditional formatting colors cells red if sales are below 1000 and green if above 5000. Since 3000 is between these values, no color formatting applies, so the cell remains uncolored.
Given a measure Average Sales = AVERAGE(Sales[Amount]), you want to display it with two decimal places and a dollar sign in a card visual.
Which DAX expression correctly formats the measure for display?
Consider which function formats numbers as currency with decimals.
The FORMAT function formats numbers as text with specified patterns. "$#,##0.00" adds a dollar sign and two decimals. ROUND only rounds but does not add currency symbol. CONCATENATE adds a dollar sign but does not format decimals. TEXT is not a valid DAX function.
You have a date column in your data model. You want to show the month and year (e.g., 'Jan 2024') in a bar chart axis.
Which approach is best for formatting the date in the visual?
Think about how Power BI handles axis fields and formatting.
Creating a calculated column with FORMAT returns a text value that can be used as a categorical axis with the desired format. Changing source data type to text is not flexible. Measures cannot be used as axis fields. Setting axis type alone does not apply custom formats to dates.
You want all your bar charts in a report to use the same custom color palette for categories to maintain brand consistency.
What is the best way to apply this color scheme across all visuals?
Consider how to apply colors consistently and easily across many visuals.
Importing a custom report theme JSON file allows defining a color palette that applies to all visuals automatically. Manually setting colors is tedious and error-prone. Copying visuals copies colors but is not scalable. Default colors in options do not allow custom palettes.
You applied conditional formatting to a matrix visual's 'Profit' column to show green for positive and red for negative values. However, the colors do not appear.
Which is the most likely reason?
Check where the formatting rule is applied in the visual's settings.
Conditional formatting must be applied to the correct field or measure in the visual's formatting pane. Applying it to a different field or measure will not show colors. Measures can be formatted conditionally. 'Show as table' mode does not disable formatting. 'Don't summarize' is not a valid setting.