Forum Discussion
RichardT_78
6 years agoHelper I
Elapsed Days
Hi I am new to power BI I have created a flow to update a power BI dataset and then created a report from it. All has worked well. My time stamp is shown as: 03/27/20 12:33:46 PM from ...
- 6 years ago
Hi RichardT_78
You can create a measure like
Measure = DATEDIFF( SELECTEDVALUE( table[column] ), TODAY() or NOW(), DAY )Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
LinkedIn
Mariusz
6 years agoCommunity Champion
Hi RichardT_78
You can create a measure like
Measure = DATEDIFF( SELECTEDVALUE( table[column] ), TODAY() or NOW(), DAY )
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
LinkedIn
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
- RichardT_786 years agoHelper I
Perfect and very simple thanks.