Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Poova
Frequent Visitor

How to create a schedule start and end date for task list when there are parallel tasks ?

I have a Sharepoint list with the below format:

Task IDTask descriptionResourceDays requiredStart DateProjected completion
1Task 1A102023-01-05 (example)CALCULATED
2Task 2B202023-01-02 (example)CALCULATED
3Task 3A30CALCULATEDCALCULATED
4Task 4B40CALCULATEDCALCULATED
5Task 5Unassigned10CALCULATEDCALCULATED

 

This is not a major project but individual service requests which are independent of each other. Each resource has only 5 hours per day to work. 

 

Based on this, I want to auto populate the start and end date of the following tasks.  I am stuck at how do I calculate the start and end dates for the tasks that are unassigned? In this case what could be a better approximation to show the completion schedule of all pending tasks that are unassigned

 

I am new to power BI and still learning DAX . Any help would be appreciated

1 ACCEPTED SOLUTION
v-rongtiep-msft
Community Support
Community Support

Hi @Poova ,

I have created a simple sample, please refer to my pbix file to see if it helps you.

Create columns.

startdate = MAXX(FILTER(ALL('Table'),'Table'[Resource]=EARLIER('Table'[Resource])),'Table'[Start Date])
projectcompletion = var _1= 'Table'[startdate]+'Table'[Days required]
return
IF('Table'[Start Date]=BLANK()&&'Table'[startdate]=BLANK(),BLANK(),_1)

vpollymsft_0-1672983266226.png

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Polly

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-rongtiep-msft
Community Support
Community Support

Hi @Poova ,

I have created a simple sample, please refer to my pbix file to see if it helps you.

Create columns.

startdate = MAXX(FILTER(ALL('Table'),'Table'[Resource]=EARLIER('Table'[Resource])),'Table'[Start Date])
projectcompletion = var _1= 'Table'[startdate]+'Table'[Days required]
return
IF('Table'[Start Date]=BLANK()&&'Table'[startdate]=BLANK(),BLANK(),_1)

vpollymsft_0-1672983266226.png

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Polly

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors