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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Search same value in same table between two dates

I have one table which has my products. 

 

For each product finds if it was listed in a specific month in the past (the minimun of the date range, here lets say [oct, nov,dec,jan] with min = oct and current=jan) and score each product  as following:

 

1- Product present in both months 100 

2- If Newly listed then score is 50 

3- If was present in the reference period and not listed now then -50

 

I have only table  as follows

DateProductidprice
1-Jan110
1-Dec120
1-Nov130
1-Oct140
1-Jan210
1-Dec212
1-Nov213
1-Jan312
1-Dec314
1-Nov315
1-Oct329
1-Dec414
1-Nov415
1-Oct429

 

Desired result shoul be 

Product score
1100
250
3100
4-50

 

I will appreciate your help

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@amitchandak Thank you very much.

It works as expected. Really thank you! this saves long hours of work

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

I converted month into date to work with

Measure = 
var _min = minx(all(Sheet1),Sheet1[Date])
var _max = maxx(all(Sheet1),Sheet1[Date])
var _before = CALCULATE(max(Sheet1[price]),filter((Sheet1),Sheet1[Date]=_min))
var _after = CALCULATE(max(Sheet1[price]),filter((Sheet1),Sheet1[Date]=_max))
Return
//maxx(VALUES(Sheet1[Productid]),_before & " "& _after)
if(ISBLANK(_after),-50,if(not(ISBLANK(_before)),100,50))

 

You can use first or last date of month

link: https://www.dropbox.com/s/kvazja8tnzqzq6a/samevalue.pbix?dl=0

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @

Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

@amitchandak Thank you very much.

It works as expected. Really thank you! this saves long hours of work

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors