March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi!
How do I do change a measure to get the percent change from PF life to PF life 2020, I have the actual variance but want the formula to be percent change. any help would be appreciated!
Solved! Go to Solution.
Hi, @bv27718n
Create a measure like below, and format it as percentage
percent change =
VAR _var =
SUM ( 'Table'[PF Life 2020] ) - SUM ( 'Table'[PF Life] )
RETURN
DIVIDE ( _var, SUM ( 'Table'[PF Life] ) )
result:
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi, @bv27718n
Create a measure like below, and format it as percentage
percent change =
VAR _var =
SUM ( 'Table'[PF Life 2020] ) - SUM ( 'Table'[PF Life] )
RETURN
DIVIDE ( _var, SUM ( 'Table'[PF Life] ) )
result:
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Based on what I got
divide( sum(Table[PF Life]) - sum(Table[PF life 2020]), sum(Table[PF Life 2020]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |