Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello everyone,
I would like to ask you for help with a problem I have with a calculated column 22VS21.
what I wanted was that the column 22vs21 = (2022 values - 2021 values) / 2021 values
the calculations should result to client 1
22vs21 = (300 - 200) / 200 = 0,5
the table with the results
I can't understand what I'm doing wrong in the formula, can someone help me?
Solved! Go to Solution.
@ngomes instead of using calculated column, you need to use measures
MEASURE = DIVIDE((SUM(tbl[2022])-SUM(tbl[2021]))/SUM(tbl[2021]))
Unless you use measures, the values from calculated table will not be aggregated the way you are desiring.
@ngomes instead of using calculated column, you need to use measures
MEASURE = DIVIDE((SUM(tbl[2022])-SUM(tbl[2021]))/SUM(tbl[2021]))
Unless you use measures, the values from calculated table will not be aggregated the way you are desiring.
that's right, thanks so much for the help.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
86 | |
84 | |
83 | |
67 | |
49 |
User | Count |
---|---|
131 | |
111 | |
96 | |
71 | |
67 |