Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I have the following formula for percentage change. In the chart below, I only want to show the change for the current year. Is there a way to remove the change value for the previous year? So in this case, remove -15.70% from the table.
If you want to show values for LY (in this case, 2022), but not the % change from 2022 to 2021 I would do the following:
You can try the following measure
Conditional Percentage Change =
VAR CurrentYear = YEAR(TODAY()) // Get the current year
VAR Change = [Percentage Change] // Replace with your actual measure for percentage change
RETURN
IF(YEAR([DateColumn]) = CurrentYear, Change, BLANK()
)
Check out the November 2023 Power BI update to learn about new features.