Forum Discussion
tryingnewtools
8 years agoRegular Visitor
Filter firstdate
Hi, I'm trying to get the firstdate() based on a particular column value For example: FIRSTDATE('Prices'[Date], 'Prices'[Food]="Carrots") However, firstdate does not allow filtering like ...
- Anonymous8 years ago
Hi
Try this.
Column = CALCULATE(FIRSTDATE(Prices[Date]),FILTER(Prices, Prices[Food]="Carrots"))
Thanks
Raj
Anonymous
8 years agoNot applicable
Hi
Try this.
Column = CALCULATE(FIRSTDATE(Prices[Date]),FILTER(Prices, Prices[Food]="Carrots"))
Thanks
Raj