Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all,
I have month, Quarter and year colum. If i select month want to see latest month like July 2017 in text box, If i select Year i want to see like Jan 2017 to July 2017 (we have ten year data) . finally if i select quarter want to see Jan 2017 - mar 2017 (First quarter) also would like to see by quarter wise in text box ..
anyone can help me on this?
Thanks.
Solved! Go to Solution.
@AmalrajRRD1 wrote:
Hi all,
I have month, Quarter and year colum. If i select month want to see latest month like July 2017 in text box, If i select Year i want to see like Jan 2017 to July 2017 (we have ten year data) . finally if i select quarter want to see Jan 2017 - mar 2017 (First quarter) also would like to see by quarter wise in text box ..
anyone can help me on this?
Thanks.
I'd suggest to use a calendar table, when you'd like to show data for 2017, then pick up 2017 in the slicer. when to show data for Q1 2017, pick up Q1 in 2017. May I know why you don't like this way?
As to your requirement, there's some tricky way with complicated measures, the measures values could vary according to the slicer like
value =
SWITCH (
LASTNONBLANK ( yourFilter[YMQ], "" ),
"Month", CALCULATE (
SUM ( yourTable[col] ),
FILTER (
yourTable,
yourTable[date] >= DATE ( YEAR ( TODAY () ), MONTH ( TODAY ), 1 )
)
),
"Quarter", CALCULATE (
SUM ( yourTable[col] ),
FILTER (
yourTable,
yourTable[date] >= DATE ( YEAR ( TODAY () ), MONTH ( TODAY ), 1 )
&& CALCULATE (
SUM ( yourTable[col] ),
FILTER (
yourTable,
yourTable[date]
< DATE ( YEAR ( TODAY () ), MONTH ( TODAY ) + 3, 1 )
)
)
)
),
"Year", CALCULATE (
SUM ( yourTable[col] ),
FILTER ( yourTable, yourTable[date] >= DATE ( YEAR ( TODAY () ), 1, 1 ) )
)
)
@AmalrajRRD1 wrote:
Hi all,
I have month, Quarter and year colum. If i select month want to see latest month like July 2017 in text box, If i select Year i want to see like Jan 2017 to July 2017 (we have ten year data) . finally if i select quarter want to see Jan 2017 - mar 2017 (First quarter) also would like to see by quarter wise in text box ..
anyone can help me on this?
Thanks.
I'd suggest to use a calendar table, when you'd like to show data for 2017, then pick up 2017 in the slicer. when to show data for Q1 2017, pick up Q1 in 2017. May I know why you don't like this way?
As to your requirement, there's some tricky way with complicated measures, the measures values could vary according to the slicer like
value =
SWITCH (
LASTNONBLANK ( yourFilter[YMQ], "" ),
"Month", CALCULATE (
SUM ( yourTable[col] ),
FILTER (
yourTable,
yourTable[date] >= DATE ( YEAR ( TODAY () ), MONTH ( TODAY ), 1 )
)
),
"Quarter", CALCULATE (
SUM ( yourTable[col] ),
FILTER (
yourTable,
yourTable[date] >= DATE ( YEAR ( TODAY () ), MONTH ( TODAY ), 1 )
&& CALCULATE (
SUM ( yourTable[col] ),
FILTER (
yourTable,
yourTable[date]
< DATE ( YEAR ( TODAY () ), MONTH ( TODAY ) + 3, 1 )
)
)
)
),
"Year", CALCULATE (
SUM ( yourTable[col] ),
FILTER ( yourTable, yourTable[date] >= DATE ( YEAR ( TODAY () ), 1, 1 ) )
)
)
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 26 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 46 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |