Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
How can I show different colors for different months in a single Line chart?
For ex:
Thanks
Solved! Go to Solution.
The only one I can think if is to make it two measures, which return BLANK for not relevant part of the period, e.g.:
first = IF(MAX('Table'[Month Number])<= 6, [Sales], BLANK())
second = IF(MAX('Table'[Month Number])>= 6, [Sales], BLANK())
and you color them accordingly
The only one I can think if is to make it two measures, which return BLANK for not relevant part of the period, e.g.:
first = IF(MAX('Table'[Month Number])<= 6, [Sales], BLANK())
second = IF(MAX('Table'[Month Number])>= 6, [Sales], BLANK())
and you color them accordingly
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |