To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I have calculated column as :
I want to replace this for "Elapsed" column by either no value, Zero (0) or 'NoT Resolved Yet'.
Any help will be appreciated. thanks
Solved! Go to Solution.
@sdhn can you try this
Column =
VAR _diff = [Resolved Date Time] - [Created]
RETURN IF([Resolved Date Time]=BLANK(),0,_diff)
@sdhn you missed the underlined part
VAR _diff = [Resolved Date Time] - [Created]
RETURN IF([Resolved Date Time]=BLANK(),0,_diff)
@sdhn can you try this
Column =
VAR _diff = [Resolved Date Time] - [Created]
RETURN IF([Resolved Date Time]=BLANK(),0,_diff)
Thanks
Please see above for error message. Thanks
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |