DAX Function Guide

TOTALQTD
Empty image or helper icon

Sam McKay

CEO & Founder

How does the TOTALQTD work?
The TOTALQTD function (DAX) returns the quarter-to-date based by evaluating all dates in the current quarter to date.
TOTALQTD Formula Syntax

TOTALQTD(
     <expression>,<dates>[,<filter>]
)

How do you use the TOTALQTD?

This function will evaluates the specified expression over the interval which begins on the first day of the quarter and ends with the last date in the specified date column after applying specified filters.

Related Blog Posts

Loading

Considerations when using the TOTALQTD?

The dates argument can be any of the following:

  • A reference to a date/time column.
  • A table expression that returns a single column of date/time values.
  • A Boolean expression that defines a single-column table of date/time values.
Related Video Tutorials

Loading

Formula examples using the TOTALQTD

=TOTALQTD(SUM(InternetSales_USD[SalesAmount_USD]),DateTime[DateKey])

=TOTALQTD(sum(FactInternetSales[Freight]),DimDate[End of Qtr])

Sales Revenue QTD = TOTALQTD(SUM(‘Sales'[SalesAmount]),’Calendar'[Date])

Related Courses

Loading