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
Hello. I have the folloiwng DAX.
IF(
ISBLANK(TFOIATab[Response Complete]),
DATEDIFF(TFOIATab[Request Received], TODAY(), DAY),
DATEDIFF(TFOIATab[Request Received], TFOIATab[Response Complete], DAY)
)
Right now if the date received and response complete are the same day, it counts as 0. I would like for it to count as 1. Can someone please advise what to add to the DAX to provide this change? Thanks.
Solved! Go to Solution.
Hi @lynnzrae please check this
IF(
ISBLANK(TFOIATab[Response Complete]),
DATEDIFF(TFOIATab[Request Received], TODAY(), DAY),
MAX(1, DATEDIFF(TFOIATab[Request Received], TFOIATab[Response Complete], DAY))
)
Hi @lynnzrae please check this
IF(
ISBLANK(TFOIATab[Response Complete]),
DATEDIFF(TFOIATab[Request Received], TODAY(), DAY),
MAX(1, DATEDIFF(TFOIATab[Request Received], TFOIATab[Response Complete], DAY))
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
8 | |
7 |