Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Example:
id | group | date | custom |
1 | apples | 7/1/2022 | 7/2/2022 |
2 | apples | 7/2/2022 | 7/2/2022 |
3 | bananas | 7/1/2022 | 7/3/2022 |
4 | bananas | 7/3/2022 | 7/3/2022 |
Solved! Go to Solution.
calculate(max([date]),ALLEXCEPT([group]) = [date]
calculate(max([date]),ALLEXCEPT([group])
Thanks. Is there a way to use the above but compare each row's custom column against the date column and return a boolean 1,0 if they equal each other?
calculate(max([date]),ALLEXCEPT([group]) = [date]