Forum Discussion
Calculating the days between two date columns from different tables (DAX?)
Hi guys, I currently have two date fields in two different tables and I want to calculate the days between them.
I have 'Candidate[Registration Date] & 'Process[Application Date] and I want to calculate the days between them, is there any way you can do this with a simple DAX measure? I can't create a custom column because they are both in different tables, any help would be appreciated
6 Replies
- AnonymousNot applicable
Hi, tryn this
DATEDIFF ( 'Candidate[Registration Date], 'Process[Application Date], DAY )
- AnonymousNot applicable
Hi thanks for the reply Anonymous
For some reason I'm still getting an error(Also apologies the date fields here are correct, I said Registration instead of Registered in my original post, that's my mistake)
- Jayrx7Frequent Visitor
Maybe try this?
DATEDIFF ( 'Candidate'[Registration Date], 'Process'[Application Date], DAY )