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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I have a list of contracts that get a new tag after every renewal. I want to find the % increase that resulted in the new contract price. That output is to be stored in the Prev % Inc column. To get the output, I check when column D (old contract) and column E (new contract) are equal. When these two are equal, the result value in column H should be the % Increase value (highlighted in red) associated with column E (the new contract column) OR contract where the Contract Status is "EXPIRED".
Thank you in advance for your help
INPUT:
OUTPUT:
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below.
It is for creating a calculated column.
Previous percent increase CC =
VAR _contractold = Data[Contract No Old]
RETURN
SUMMARIZE (
FILTER (
Data,
Data[Contract Status] = "Expired"
&& Data[Contract No New] = _contractold
),
Data[Percent increase]
)
Your solustion answers my question perfectly. Thank you!
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below.
It is for creating a calculated column.
Previous percent increase CC =
VAR _contractold = Data[Contract No Old]
RETURN
SUMMARIZE (
FILTER (
Data,
Data[Contract Status] = "Expired"
&& Data[Contract No New] = _contractold
),
Data[Percent increase]
)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
6 | |
4 | |
3 |