Based on the data you showed, I'm guessing you want the difference in seconds between the times. You're right to use DATEDIFF(). (I noticed you said DATADIFF, so careful that you're using the right method.)
Use the following calculated field:
DATEDIFF('second', [StartTime], [FinishTime])
Adjust that first argument accordingly if I guessed wrong on the unit of time you want.
If Tableau's having trouble automatically parsing StartTime and EndTime as datetimes, you can use DATEPARSE():
DATEPARSE("yyyy.MM.dd hh:mm:ss", [StartTime])
As for displaying the duration in hours, minutes, and seconds, DATEDIFF() just returns a single number, so you'll have to homebrew something. You'll need to create your own function so you can format the duration according to your needs, but here's one quick example that displays the duration as "hh:mm:ss" (you'll need to make a calculated field like I showed above to find the duration in seconds first):
RIGHT('0' + STR(FLOOR([Duration in Seconds]/60/60)), 2) + ':' +
RIGHT('0' + STR(FLOOR([Duration in Seconds]/60)), 2) + ':' +
RIGHT('0' + STR(FLOOR([Duration in Seconds])), 2)
On each line, you divide the duration in seconds by the appropriate divisor to convert to hours, minutes, or seconds. Then you FLOOR that number to trash the decimal. To deal with single digit numbers, you concatenate a '0' to the front of each number, then take the right two characters of the resulting string. (RIGHT('027', 2) yields '27', and RIGHT('04', 2) yields '04'.)