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
Hey All!
I have 2 file Jan & Feb
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
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:
Thanks!
Solved! Go to Solution.
This is the Solution
@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
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!
This is the Solution
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |