Forum Discussion
JustNewbie
3 years agoHelper I
Networkdays Date diff between two tables
Hi, I have 2 different connected tables. How do i include the Networkdays in the Dax below? Days = DATEDIFF(RELATED(Packing[Date].[Date]),Shipping[Date ].[Date],DAY) I try this but it give me ...
- Anonymous3 years ago
you have created a column instead of a measure
For a column, it would go as below:
Anonymous
3 years agoNot applicable
JustNewbie ,
Can you try
NetWD = NETWORKDAYS( MAX(Packing[Date]), MAX(Shipping[Date]))
Output below:
Output below:
JustNewbie
3 years agoHelper I
Anonymous
But it give wrong result...
- Anonymous3 years agoNot applicable
you have created a column instead of a measure
For a column, it would go as below: