Forum Discussion
DATESBETWEEN with one fixed date
- 6 years ago
Minx need (Table name , Expression)
something like
Column = datediff(minx(Ordnerinhalt,Ordnerinhalt[Date] );Sheet1[Entry Date 2];DAY)
Hi,
What does it means ? "content.folder"?
Have you tried DATEDIFF("date1","date2",DAY)
I hope that helped you
Hi,
I used "content.folder" within an empty query to get a table that displays the content of the folder my excel file is being saved. Within this table, I have a column that display the original creation date of my excel file.
If I enter DATEDIFF I can't enter the first table. Is there some DAX formular that I need to enter after the first bracket?
- tkirilov6 years ago
Resolver I
If you have a relationship between the two tables, then just make sure you use both the table and column names in the formula for the measure like:
Measure = DATEDIFF('Table 1'[DateColumn1], 'Table 2'[DateColumn2], DAY)