Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
I want the line component to only show quarterly total numbers even though my x-axis is by month. Is this possible?
Solved! Go to Solution.
Hi @katto_16 ,
I think it is possible to achieve your requirements.
First of all, I create a table as you mentioned.
Then I create two calculated columns.
Format =
YEAR ( 'Table'[Date] ) & "-"
& FORMAT ( 'Table'[Date].[Quarter], "00" )
QtrTotal =
CALCULATE ( SUM ( 'Table'[Total] ), ALLEXCEPT ( 'Table', 'Table'[Format] ) )
Finally you will get what you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @katto_16 ,
I think it is possible to achieve your requirements.
First of all, I create a table as you mentioned.
Then I create two calculated columns.
Format =
YEAR ( 'Table'[Date] ) & "-"
& FORMAT ( 'Table'[Date].[Quarter], "00" )
QtrTotal =
CALCULATE ( SUM ( 'Table'[Total] ), ALLEXCEPT ( 'Table', 'Table'[Format] ) )
Finally you will get what you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
87 | |
74 | |
69 | |
58 | |
55 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
30 |