Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a table that looks like this.
with a date measure that basically takes the minimum date based on the delay.
What I need is to have a minimum of these dates that will populate the whole table, so it looks like this:
Any idea on how to fo it?
Thanks
Solved! Go to Solution.
Hi @Anonymous
Try this measure
Date_Min =
CALCULATE ( MIN ( 'table'[date 1] ), REMOVEFILTERS ( 'Table' ) )
You can remove filters only from DELAI column rather than the whole table as well.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
hi @Anonymous
You can try below meaure
Min_measure= Calculate (min (date), ALL(DELAI))
I hope I answered your question!
hi @Anonymous
You can try below meaure
Min_measure= Calculate (min (date), ALL(DELAI))
I hope I answered your question!
Hi @Anonymous
Try this measure
Date_Min =
CALCULATE ( MIN ( 'table'[date 1] ), REMOVEFILTERS ( 'Table' ) )
You can remove filters only from DELAI column rather than the whole table as well.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!