既定では、差の割合は、ある四半期と時系列でその前の四半期 (例: Q1 2017 と Q4 2016) の間で計算されます。QOQ の計算では、比較したいのは異なる年の同じ四半期 (例: Q1 2017 と Q1 2016) です。
IF NOT (
YEAR( [Order Date] ) = YEAR( { FIXED : MAX( [Order Date] ) } ) - 1
AND DATEPART( 'quarter', [Order Date] ) = DATEPART( 'quarter', { FIXED : MAX( [Order Date] ) } )
AND MONTH( [Order Date] ) > MONTH( { FIXED : MAX( [Order Date] ) } )
)
THEN [Sales]
END
この計算では、2 番目に新しい年の月から、直近の四半期で欠落している月を除いた全期間の売上高が返されます。
(ZN(SUM([Sales]))
- LOOKUP(ZN(SUM([Sales])), -1))
/ ABS(LOOKUP(ZN(SUM([Sales])), -1))(ZN(SUM([Sales]))
- LOOKUP(ZN(SUM([Sales excluding incomplete months])), -1))
/ ABS(LOOKUP(ZN(SUM([Sales excluding incomplete months])), -1))
上記の計算では、前の日付期間の売上高のみが置き換えられます。これは、現在の四半期は常に完全な売上高を使用するが、その四半期がフィルターされている場合はフィルターされた売上高と比較されることを意味します。
001458093
866 KB

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.