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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Kaii
Helper I
Helper I

How to show which items have changed between two dates

I have a table that contain 2 columns like below

Date             Items
01/01             A
01/01             B
01/01             C
02/01             A
02/01             B
As you can see Item C are only exist in 01/01. Now I want to create a table visual that shows which Item is unique between selected date and one day before that day. 
the result should be something like 
Unique Value between 01/01 and 02/01 is  Item C



Thanks in advance

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @Kaii ;

You could try to create a measure.

Measure = 
var _count=CALCULATE(COUNT('Table'[Items]),FILTER(ALL('Table'),[Items]=MAX([Items])&&( [Date] =MAX('Date'[Date]) ||[Date] =MAX('Date'[Date])-1)))
return IF(_count=1,MAX([Items]))

The final output is shown below:

vyalanwumsft_0-1651472848131.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-yalanwu-msft
Community Support
Community Support

Hi, @Kaii ;

You could try to create a measure.

Measure = 
var _count=CALCULATE(COUNT('Table'[Items]),FILTER(ALL('Table'),[Items]=MAX([Items])&&( [Date] =MAX('Date'[Date]) ||[Date] =MAX('Date'[Date])-1)))
return IF(_count=1,MAX([Items]))

The final output is shown below:

vyalanwumsft_0-1651472848131.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you SO SO MUCH!!

Kaii
Helper I
Helper I

anyone ? 😫

Kaii
Helper I
Helper I

😥

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors