I am trying to calculate the number of days between two columns. Below is an expression in qlik sense
that I would like to translate into DAX
:
LPO_DATE - (CLM_INTM_DT) +1
I tried this in DAX
but I don't think it is correct:
V_TurnAround_Time =
CALCULATE ( SUM ( LPO_excel[LPO_DATE] ) )
- CALCULATE ( SUM ( Claims_excel[CLM_INTM_DT] ) ) + 1