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
Navaneetharaju_
Helper II
Helper II

Need future dates based column condition

Hi, 

I need date field as a result 

 

I have one start date, pipeline run schdules.

 

Start date = 01/12/2023

Repeat by - days

repeat every - 3  (3 days once)

Task name - Fetch_data_from_sql_aws

 

I want this task next run dates till today

 

TaskRun datesrepeat byrepeat every
Fetch_data_from_sql_aws01-12-23days3
Fetch_data_from_sql_aws04-12-23days3
Fetch_data_from_sql_aws07-12-23days3
Fetch_data_from_sql_aws10-12-23days3
Fetch_data_from_sql_aws13-12-23days3
Fetch_data_from_sql_aws16-12-23days3
Fetch_data_from_sql_aws19-12-23days3

      

Navaneetharaju__0-1702974131933.png

 

 

I want these run date as a result. like above i have multiple tasks run on daily basis, weekly once, monthly once, I have start date now i have to find the upcoming days when this gonna run.

 

Thank you.

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

Hi @Navaneetharaju_ ,

You can create a measure as below to get it:

Next run dates =
VAR _maxdate =
    CALCULATE ( MAX ( 'Table'[Run dates] ), ALLSELECTED ( 'Table' ) )
VAR _repeatday =
    CALCULATE ( MAX ( 'Table'[repeat every] ), ALLSELECTED ( 'Table' ) )
RETURN
    _maxdate + _repeatday

vyiruanmsft_0-1703148825800.png

Best Regards

Community Support Team _ Rena
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-yiruan-msft
Community Support
Community Support

Hi @Navaneetharaju_ ,

You can create a measure as below to get it:

Next run dates =
VAR _maxdate =
    CALCULATE ( MAX ( 'Table'[Run dates] ), ALLSELECTED ( 'Table' ) )
VAR _repeatday =
    CALCULATE ( MAX ( 'Table'[repeat every] ), ALLSELECTED ( 'Table' ) )
RETURN
    _maxdate + _repeatday

vyiruanmsft_0-1703148825800.png

Best Regards

Community Support Team _ Rena
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.