Hello @all,
could anyone help me out with the DAX formula on this:
I'm looking for the start and end date of each task in historic data.
Thanks in advance!
Solved! Go to Solution.
Hi @Anonymous
Try this, where Table1 is the table you show:
1. In the query editor, replace "open" for null in TaskEndDate and then convert TaskStartDate and TaskEndDate to type Date
2. Place Table1[Task] in the rows of a matrix visual
3. Create this two measures and place them in values of the matrix
MeasStartDate = MIN(Table1[TaskStartDate])
MeasEndDate = VAR _Res = MAX ( Table1[TaskEndDate] ) RETURN IF ( NOT ISBLANK ( _Res ), _Res, "open" )
Please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. That allows people trying to help to readily copy the data and run a quick test, plus it increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).
Hi @Anonymous
Try this, where Table1 is the table you show:
1. In the query editor, replace "open" for null in TaskEndDate and then convert TaskStartDate and TaskEndDate to type Date
2. Place Table1[Task] in the rows of a matrix visual
3. Create this two measures and place them in values of the matrix
MeasStartDate = MIN(Table1[TaskStartDate])
MeasEndDate = VAR _Res = MAX ( Table1[TaskEndDate] ) RETURN IF ( NOT ISBLANK ( _Res ), _Res, "open" )
Please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. That allows people trying to help to readily copy the data and run a quick test, plus it increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
225 | |
54 | |
44 | |
43 | |
43 |
User | Count |
---|---|
274 | |
211 | |
75 | |
73 | |
64 |