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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hey
I am working on a line graph what shows the % sale but i want to change the cut off point for the '% sale ') to end at year 2021. The reason why it drops is because there is no data for 2022 (but i need to keep the row data for 2022 for other data
All lines in the graph is calculated from a measure
Maybe you need to modify your third measure, "PercentageSale".
PercentageSale = IF('Education %'[Year] <= 2021, ([AddSale] - [AverageSale]) / [AverageSale], BLANK())
This will calculate the % Sale only for years less than or equal to 2021 and show it as a blank for the year 2022.