Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
curiouspbix0
Helper IV
Helper IV

compare previous value

What is the efficient dax to compare current value to previous value to derive up and down arrows ?

 Input Table 

City         Station   Measurement  Time 

Brooklyn   S1         1.3                   08/27/2020 7:00 am 

Brooklyn   S1         1.4                   08/27/2020 7:30 am 

Brooklyn   S1         1.5                   08/27/2020 8:00 am 

Brooklyn   S1         1.5                   08/27/2020 8:30 am 

Brooklyn   S1         1.3                   08/27/2020 9:00 am 

Brooklyn  S2         3.4                   08/27/2020 7:30 am 

Brooklyn  S2         4.5                   08/27/2020 8:00 am 

Brooklyn  S2         5.5                   08/27/2020 8:30 am 

 

Output

 

Brooklyn S1 Down Arrow 

Brookyn S2 Up Arrow

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@curiouspbix0 

Please try this measure; you can also use the Icon Set in Conditional Formatting with slight modIfication to this measure. 

 

UpDown = 
VAR D = MAX(Brooklyn[Time ])
VAR PD=
    CALCULATE(
        MAX(Brooklyn[ Measurement ]),
       Brooklyn[Time ] < D
    )
VAR DIF = 
IF( 
    ISBLANK(PD), BLANK(),
    
    IF ( MAX(Brooklyn[ Measurement ]) - PD >= 0 , UNICHAR ( 9650 ), UNICHAR ( 128315 ))
)

RETURN
DIF

 

Fowmy_0-1598601960434.png

 

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@curiouspbix0 

Please try this measure; you can also use the Icon Set in Conditional Formatting with slight modIfication to this measure. 

 

UpDown = 
VAR D = MAX(Brooklyn[Time ])
VAR PD=
    CALCULATE(
        MAX(Brooklyn[ Measurement ]),
       Brooklyn[Time ] < D
    )
VAR DIF = 
IF( 
    ISBLANK(PD), BLANK(),
    
    IF ( MAX(Brooklyn[ Measurement ]) - PD >= 0 , UNICHAR ( 9650 ), UNICHAR ( 128315 ))
)

RETURN
DIF

 

Fowmy_0-1598601960434.png

 

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

amitchandak
Super User
Super User

@curiouspbix0 , display with city and station

measure =
calculate(sum(Table[Measurement]), filter(Allselected(Table[Time]), table[Time] =max(Table[Time]))) -calculate(lastnonblankvalue(Table[Time],sum(Table[Measurement])), filter(Allselected(Table[Time]), table[Time] <max(Table[Time])))

 

you can write logic for up and down

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors