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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
netanel
Post Prodigy
Post Prodigy

SHOW CHANGE

Hey All!

I have 2 file Jan & Feb

new5.JPG

 

 

 

 

 

The append its the file i work on

in the append i have a column call "file" that give me to a distinction between the files

new 6.JPG

 

 

 

 

 

 

 

 

 

 

 

 

I want to create a column that will show me the change between the January file and the February file
I mean if a person changed work ann site I will see the change in another column

Example of data:

NEW 4.JPG

 

 

 

 

 

 

 

 

 

 

Thanks!

 








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki
1 ACCEPTED SOLUTION

This is the Solution

_Site =
VAR _diff_Site =
CALCULATE (
MAX ( Append2[Finance Site] ),
FILTER (
Append2,
Append2[First Name] = EARLIER ( Append2[First Name] )
&& Append2[Person Number] = EARLIER ( Append2[Person Number] )
)
)
RETURN
IF ( _diff_Site <> Append2[Finance Site], "change", BLANK () )
Thanks All!







Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@netanel ,

 

create a separate table with file name join with table

 

The create measure like

New measure =

var _file1=  calculate(max(Table[Job]) , filter(allselected(File), File[File] = "File1") )

var _file2=  calculate(max(Table[Job]) , filter(allselected(File), File[File] = "File2") )

return

if(Max(File[File]) ="File2" &&  _file1 <> _file2 , "red", "black")

 

Use this measure in conditional formatting using the field value option

 

How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4

@amitchandak 

 

Hi thanks for the help but something goes wrong
Both in formula and in logic

In Excel it's simply Velookap between sheets
When the key is a Employee number\ID
Then where the columns are not same there is an N\A and this is an indicator that there is a change between the files
Here I understand need a calculated column or VAR as you did
But it does not work out

Maybe I did not explain myself well
Tell me what's missing and I'll try to be precise

Thanks!

new 7.JPGnew 8.JPG

 

 








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki

This is the Solution

_Site =
VAR _diff_Site =
CALCULATE (
MAX ( Append2[Finance Site] ),
FILTER (
Append2,
Append2[First Name] = EARLIER ( Append2[First Name] )
&& Append2[Person Number] = EARLIER ( Append2[Person Number] )
)
)
RETURN
IF ( _diff_Site <> Append2[Finance Site], "change", BLANK () )
Thanks All!







Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki

Helpful resources

Announcements
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.