Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I am working with the following two tables:
| Time | Stage | Value1 | Value2 |
| 5/22/2020 13:01:15 | 1 | ||
| 5/22/2020 13:02:15 | 1 | ||
| 5/22/2020 13:03:15 | 1 | ||
| 5/22/2020 14:01:15 | 2 | ||
| 5/22/2020 14:02:15 | 2 |
| Stage | Start | End |
| 1 | 5/22/2020 13:01:15 | 5/22/2020 13:03:15 |
| 2 | 5/22/2020 14:01:15 | 5/22/2020 14:02:15 |
These tables are realted via stage number. For table 2, where I am having issues is calculating the Start and End Time. For start time, it needs to filter data 1 by corresponding stage and find the first time.
I have tried the following DAX expression, but am getting odd results:
Start = CALCULATE(FIRSTDATE(ParameterValues[date].[Date]),USERELATIONSHIP(ParameterValues[stageId],Stages[_id]))
Every row is returning 1/1/2020 12:00:00 AM for start and 12/31/2020 12:00:00 AM for end, but neither of these values are in the table.
Im sure I am making a simple mistake, but have been stuck and cannot get it figured out. Thank you in advance for the help!!
Solved! Go to Solution.
@att9728 , Not very clear, Both as a new column in table 2
start Time table 2 = minx(filter(table1,table1[Stage] =table2[Stage]),table1[Time])
End Time table 2 = maxx(filter(table1,table1[Stage] =table2[Stage]),table1[Time])
@att9728 , Not very clear, Both as a new column in table 2
start Time table 2 = minx(filter(table1,table1[Stage] =table2[Stage]),table1[Time])
End Time table 2 = maxx(filter(table1,table1[Stage] =table2[Stage]),table1[Time])
Thank you for this! This is the answer.
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 |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 64 | |
| 31 | |
| 29 | |
| 24 |