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.
4 Replies
- Greg_Deckler
Community Champion
Anonymous Try:
Column = ( [Netflix Release Date] - [Release Date] ) * 1.Or you can use DATEDIFF
- AnonymousNot applicable
I need it as a measure m
- FreemanZ
Super User
Hi Anonymous
a bit unusual to have a measure in such cases.
How would you like to use/present the expected visual?