Forum Discussion
Anonymous
3 years agoNot applicable
Calculating difference between 2 dates in calculated measure.
hi i need to make a calculated measure which will present the different between the two dates in the columns above. any help will be helpful thank you
- Anonymous3 years ago
Hi Anonymous ,
Try this code to create a measure.
Datediff = DATEDIFF ( SELECTEDVALUE ( 'TableName'[Netflix Release Date] ), SELECTEDVALUE ( 'TableName'[Release Date] ), DAY )It will work after you add this measure into a visual.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Community Champion
3 years agoAnonymous Try:
Column = ( [Netflix Release Date] - [Release Date] ) * 1.
Or you can use DATEDIFF
- Anonymous3 years agoNot applicable
I need it as a measure m
- FreemanZ3 years ago
Super User
Hi Anonymous
a bit unusual to have a measure in such cases.
How would you like to use/present the expected visual?
- Anonymous3 years agoNot applicable
Hi Anonymous ,
Try this code to create a measure.
Datediff = DATEDIFF ( SELECTEDVALUE ( 'TableName'[Netflix Release Date] ), SELECTEDVALUE ( 'TableName'[Release Date] ), DAY )It will work after you add this measure into a visual.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.