The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Solved! Go to Solution.
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 Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Try:
Column = ( [Netflix Release Date] - [Release Date] ) * 1.
Or you can use DATEDIFF
I need it as a measure m
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 Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
a bit unusual to have a measure in such cases.
How would you like to use/present the expected visual?
User | Count |
---|---|
27 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
6 |