Option A correctly filters the billing data to only include rows where the date is in the current month and year, then sums the Cost.
Option A sums all costs without filtering by date.
Option A removes filters and sums all costs, ignoring date.
Option A filters only for today's date, not the whole month.
A line chart is ideal for showing trends over time, such as monthly billing costs.
Pie charts show parts of a whole at one point in time, not trends.
Bar charts can compare categories but are less effective for continuous time trends.
Scatter plots show relationships between two variables, not time trends.
A star schema with a fact table and dimension tables is best for BI dashboards because it supports efficient queries and clear relationships.
Option B leads to slow queries and difficulty filtering.
Option B lacks relationships, making analysis hard.
Option B is overly complex and less performant for typical BI needs.
Avg Daily Cost = AVERAGEX(FILTER(Billing, MONTH(Billing[Date]) = MONTH(TODAY())), Billing[Cost])
The measure filters only by month but not by year, so it mixes data from the same month in all years, causing wrong results or errors.
FILTER returns a table, so AVERAGEX works correctly.
Billing[Cost] is valid inside AVERAGEX.
TODAY() can be used inside FILTER.
Incremental refresh loads only new data and pre-aggregations reduce query complexity, improving performance while keeping accuracy.
Removing filters shows too much data and slows queries.
Direct query mode can be slower on large datasets.
Splitting tables without relationships complicates analysis and may not improve speed.