Vander1981
New Member
- Joined
- Jun 20, 2017
- Messages
- 18
Hi,
I am stuck with a visualization problem.
I have got a running total measure that I want to display in a Quarterly Chart (Column chart) with a drill down by months.
I have a Sales Table with a column Date (Max Date is 01-07-2017 / 01-JULY-2017) and a calendar Table.
I am working with a Fiscal calendar : 1st month is APRIL
I tried to work around this with a SWITCH formula :
For a reason that I cannot understand it only displays Q1 and not Q2 ?
Any idea ?
Thanks a lot
I am stuck with a visualization problem.
I have got a running total measure that I want to display in a Quarterly Chart (Column chart) with a drill down by months.
I have a Sales Table with a column Date (Max Date is 01-07-2017 / 01-JULY-2017) and a calendar Table.
I am working with a Fiscal calendar : 1st month is APRIL
I tried to work around this with a SWITCH formula :
Code:
Portfolio accounts 2017 RT% Qtr (PCI) =
SWITCH (
TRUE;
MAX ( 'Calendar'[Date] ) > MAX ( Sales[Date] ); BLANK ();
[Portfolio accounts 2017 RT% (PCI)]
)
For a reason that I cannot understand it only displays Q1 and not Q2 ?
Any idea ?

Thanks a lot
Last edited: