Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
Task | Run dates | repeat by | repeat every |
Fetch_data_from_sql_aws | 01-12-23 | days | 3 |
Fetch_data_from_sql_aws | 04-12-23 | days | 3 |
Fetch_data_from_sql_aws | 07-12-23 | days | 3 |
Fetch_data_from_sql_aws | 10-12-23 | days | 3 |
Fetch_data_from_sql_aws | 13-12-23 | days | 3 |
Fetch_data_from_sql_aws | 16-12-23 | days | 3 |
Fetch_data_from_sql_aws | 19-12-23 | days | 3 |
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.
Solved! Go to Solution.
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
Best Regards
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
Best Regards
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |