Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a Required delivery date in my Sales table and then a small table that is populated with a lead time from my scheduler. This is in the form of the number of weeks we are currently scheduling before delivery, this can change from week to week. I am wanting to subtract the current lead time from the the Required delivery date provided by the customer, to display per job and show a date the project must be fully released to the plant to hit this date.
The Sales Table has many of rows with all of our promised jobs and details. The lead time table is just one row with current lead time that is updated by the scheduler. This usually ranges from 9-15 week lead times.
Solved! Go to Solution.
Hi @Jmccoy ,
What is the relationship between two tables, such as if it based on jobid column, we can use the following formula:
FDRD =
DATEADD (
Dashboard_Sales2[ReqDel].[Date],
- CALCULATE (
SUM ( 'Table 2'[Lead Time] ),
'Table 2',
'Table 2'[jobid] in Distinct(Dashboard_Sales2[jobid])
),
DAY
)
If it doesn't meet your requirement, Could you please provide a mockup sample based on fake data or describle the fields of each tables and the relations between tables simply? It will be helpful if you can show us the exact expected result based on the tables. Please upload your files to OneDrive For Business and share the link here.
Best regards,
Something like this but in lieu of the - 84 days it would be the lead times in the other column. FDRD = DATEADD(Dashboard_Sales2[ReqDel].[Date], -84,DAY)
Hi @Jmccoy ,
What is the relationship between two tables, such as if it based on jobid column, we can use the following formula:
FDRD =
DATEADD (
Dashboard_Sales2[ReqDel].[Date],
- CALCULATE (
SUM ( 'Table 2'[Lead Time] ),
'Table 2',
'Table 2'[jobid] in Distinct(Dashboard_Sales2[jobid])
),
DAY
)
If it doesn't meet your requirement, Could you please provide a mockup sample based on fake data or describle the fields of each tables and the relations between tables simply? It will be helpful if you can show us the exact expected result based on the tables. Please upload your files to OneDrive For Business and share the link here.
Best regards,
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |