Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Solved! Go to Solution.
Hi @Anonymous ,
One sample for your reference.
DURATION = DATEDIFF ( MAX ( 'Table'[sai_startdate] ), MAX ( 'Table'[sai_duedate] ), DAY )
If this is a measure, you need to give it some type of context. Right now, you are reffering to a whole column, so it does not know which value in the column to use.
If you plan on using this in a table or graph, using the function "Selectedvalue" will add the current context.
Try this:
DURATION = DATEDIFF( SELECTEDVALUE(sai_duedate) , SELECTEDVALUE(sai_startdate) , day )
Did I answer your question? Mark my post as a solution! Proud to be a Super User!
Connect with me!
Stay up to date on
Read my blogs on
Thanks Steve , I want to apply it on row level . Will this work ?
Hi @Anonymous ,
One sample for your reference.
DURATION = DATEDIFF ( MAX ( 'Table'[sai_startdate] ), MAX ( 'Table'[sai_duedate] ), DAY )