Hi,
I am hoping this is simple. I want to get the earliest date in the sales table. The DAX blow will get me to the minimum sk_Date (20180101) in the sales table. What I am looking for is to return the value from the date table that has this sk_Date
DAX
VAR FirstDayWithData =
CALCULATE (
MIN ( ‘Sales’[sk_Date]),
REMOVEFILTERS ()
) Date Table fields
[sk_Date] - integer
[Date] - Date format
Is there an easy solution to this such as related. Struggling to see an example for this.
Cheers
E