This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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
Check out the April 2026 Power BI update to learn about new features.
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 |
|---|---|
| 38 | |
| 38 | |
| 31 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 74 | |
| 61 | |
| 31 | |
| 31 | |
| 23 |