Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I want to create a visual as shown below.
I have taken a line and stacked column chart but with that i am able to achieve this visual as shown below:
I want this green background to cover months till september how can i achieve that?
Solved! Go to Solution.
Hi @Bhavya98 ,
For this you need to create a measure and then use it has your values in the bar or the line chart something similar to:
DateColour = if( EOMONTH(MAX('Calendar'[Date]), 0) <= date(2022, 9,30), 1)
Now use this metric has your background:
In my example I use may has the base value but has an example it works properly.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Bhavya98 ,
For this you need to create a measure and then use it has your values in the bar or the line chart something similar to:
DateColour = if( EOMONTH(MAX('Calendar'[Date]), 0) <= date(2022, 9,30), 1)
Now use this metric has your background:
In my example I use may has the base value but has an example it works properly.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.