Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi Guys,
I jhave a problem with DATEDIFF formula.
I need to make the formula on date fields of different tables.
Please help me.
Ex. DATEDIFF between HH Doc Date and B.P. Req Date.
Thanks
Solved! Go to Solution.
DateDifference =
VAR StartDate = MAX(Table[HH Doc Date])
VAR EndDate = MAX(Table[B.P. Req Date])
RETURN
DATEDIFF ( StartDate, EndDate, DAY )
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
DateDifference =
VAR StartDate = MAX(Table[HH Doc Date])
VAR EndDate = MAX(Table[B.P. Req Date])
RETURN
DATEDIFF ( StartDate, EndDate, DAY )
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!