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
I have created a column with the following
Diff in Per No Previous = if(isblank([Previous Performance]),0,[Current Performance]-[Previous Performance])
I would like to create a measure creating the same so I can make arrows for conditional formatting. Can someplease please tell me how I can write the DAX for the above code. The table where Current Performance and Previous Performance fields are is called Performance
Many thanks
@v-shex-msft , @tamerj1 @amitchandak
Solved! Go to Solution.
Hi @spandy34 ,
If [Previous Performance] and [Current Performance] are measures, you can use them directly.
If [Previous Performance] and [Current Performance] are columns, you need to use SUM()/MAX()/MIN() function to use them. Measure will return aggregation.
Measure:
Diff in Per No Previous =
IF (
ISBLANK ( SUM ( 'TableName'[Previous Performance] ) ),
0,
SUM ( 'TableName'[Current Performance] )
- SUM ( 'TableName'[Previous Performance] )
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sure! You can create a measure that calculates the difference between the current and previous performance values by using the DAX formula:
Diff in Per No Previous Measure = IF(ISBLANK(MAX(Performance[Previous Performance])), 0, MAX(Performance[Current Performance]) - MAX(Performance[Previous Performance]))
This measure uses the MAX function to get the maximum value of the previous and current performance columns from the Performance table. It then checks if the previous performance value is blank, and if so, returns 0. Otherwise, it calculates the difference between the current and previous performance values. You can use this measure to create arrows for conditional formatting based on the difference between the current and previous performance values.
Hi @spandy34 ,
If [Previous Performance] and [Current Performance] are measures, you can use them directly.
If [Previous Performance] and [Current Performance] are columns, you need to use SUM()/MAX()/MIN() function to use them. Measure will return aggregation.
Measure:
Diff in Per No Previous =
IF (
ISBLANK ( SUM ( 'TableName'[Previous Performance] ) ),
0,
SUM ( 'TableName'[Current Performance] )
- SUM ( 'TableName'[Previous Performance] )
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
---|---|
94 | |
87 | |
84 | |
73 | |
49 |
User | Count |
---|---|
143 | |
131 | |
110 | |
64 | |
55 |