Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Team,
I have a dataset which comprises of new columns and old columns. I want to compare both of these columns values and store only modified fields in a column named Modified fields. I need to then show my values as old and new. I am adding snippet of the database structure and my requirment output. Any help will be appreciated.
Please let me know if you need more clarity on the requirement.
Thanks
Solved! Go to Solution.
Hi,
I am not sure about why QW C is not showing in your screenshot, but I tried to create a table like below.
Please check the below picture and the attached pbix file.
It is for creating a new table.
New Table =
FILTER (
SELECTCOLUMNS (
GENERATE (
VALUES ( Data[Case ID] ),
{
( "A", CALCULATE ( SUM ( Data[Old A] ) ), CALCULATE ( SUM ( Data[New A] ) ) ),
( "B", CALCULATE ( SUM ( Data[Old B] ) ), CALCULATE ( SUM ( Data[New B] ) ) ),
( "C", CALCULATE ( SUM ( Data[Old C] ) ), CALCULATE ( SUM ( Data[New C] ) ) )
}
),
"@CASE ID", Data[Case ID],
"@Modified fields", [Value1],
"@Old Value", [Value2],
"@New Value", [Value3]
),
[@Old value] > [@New Value]
)
Hi,
I am not sure about why QW C is not showing in your screenshot, but I tried to create a table like below.
Please check the below picture and the attached pbix file.
It is for creating a new table.
New Table =
FILTER (
SELECTCOLUMNS (
GENERATE (
VALUES ( Data[Case ID] ),
{
( "A", CALCULATE ( SUM ( Data[Old A] ) ), CALCULATE ( SUM ( Data[New A] ) ) ),
( "B", CALCULATE ( SUM ( Data[Old B] ) ), CALCULATE ( SUM ( Data[New B] ) ) ),
( "C", CALCULATE ( SUM ( Data[Old C] ) ), CALCULATE ( SUM ( Data[New C] ) ) )
}
),
"@CASE ID", Data[Case ID],
"@Modified fields", [Value1],
"@Old Value", [Value2],
"@New Value", [Value3]
),
[@Old value] > [@New Value]
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
75 | |
72 | |
39 | |
29 | |
27 |
User | Count |
---|---|
97 | |
96 | |
58 | |
44 | |
40 |