Forum Discussion
Aggregate, Sort the data -> Calculate score
- 5 years ago
Anonymous , check if the attached file after signature can help
Anonymous , In case you need pairscore
You can try measure like
countx(allselected(Table), Table[roomID] = max(Table[RoomID]) && Table[Date] <= max(Table[Date])) *.5
otherwise
Can you please share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Here is a sample data! https://we.tl/t-920BuxuX7U
I tried your method but it looks like the measure doesn't take the date column...
- amitchandak5 years agoSuper User
Anonymous , Create a date column from created_at, is has a time stamp
Date = [created_at].date
or
Date = date(year([created_at]),month([created_at]),day([created_at]))
You can try the same formula with correct column names
- Anonymous5 years agoNot applicable
amitchandak Thanks but I found another issue with that method. It needs to have both date and time, but ".date" makes it all the same time..
Would you please help? Here is a pbix file link! https://we.tl/t-TM2i36iWpY
Thank you so much.