Forum Discussion
First Date in Group
- 9 years ago
Hi zrichardson,
To resolve your issue, you should combine the column [BranchID] and [FileStartedDate] into a single table, as is shown in your original post. If you have had a table contains column [BranchID], please create a calculated column like:
FileStartDate = RELATED(MilestoneDates[FileStartDate])Then, you can use below DAX formula to display the earliest file start date.
BranchStartDate = Calculate(Min(Table[FileStartedDate]), Filter(Table, Table[BranchID]=Earlier([BranchID])))
Best regards,
Yuliana Gu
Hi there,
What are your two tables called and can you please post a small sample set of data showing the data as it is in the two columns.
We can definitely join them up for you and produce the results you need. It's just helpful to see the tables & data as close to your actual structure.
:)
The Table 'Loans' contains the Branch ID, and 'MilestoneDates' contains Started Date.
Started Date is also linked to a calendar table.
- Phil_Seamark9 years agoMicrosoft Employee
Have you considered creating a new table whcih is a merge of the two tables? Then create your measure on that?
This can be done in DAX but might be more efficient to do upstream.