This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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 the above.
What would be the best way to do this?
Thank you.
Solved! Go to Solution.
Hi
Try this.
Column = CALCULATE(FIRSTDATE(Prices[Date]),FILTER(Prices, Prices[Food]="Carrots"))
Thanks
Raj
Hi
Try this.
Column = CALCULATE(FIRSTDATE(Prices[Date]),FILTER(Prices, Prices[Food]="Carrots"))
Thanks
Raj
We probably need to learn more about your data-table and if you are trying to create this as.
A simplified version might be a calculated measure
Food Date Apples 2018-01-01 Apples 2018-02-01 Apples 2018-03-01 Bananas 2018-01-15 Bananas 2018-01-19 Bananas 2018-01-20 Carrots 2018-03-01 Carrots 2018-03-02 Carrots 2018-03-10
First Date = FIRSTDATE('Table1'[Date])
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 31 | |
| 23 | |
| 15 |
| User | Count |
|---|---|
| 76 | |
| 59 | |
| 31 | |
| 31 | |
| 25 |