Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in BI by (17.6k points)

I am working with some sales data that each transaction has multiple stages. say stage A, B, C, D...

In the perfect world, each transaction needs to go to each stage and I want to calculate the difference the transaction stays at each stage.

Say the data might look like this:

transaction_id    stage    updated_date

1                 A        2015-01-01

1                 B        2015-01-02

1                 C        2015-01-05

1                 D        2015-01-06

I want something like: 

transaction_id    stage    time_spent

1                 AB       1 day

1                 BC       3 days

1                 CD       1 day 

Then I will be able to analyze the time spent at each stage and look at the histogram or distribution. However, the only thing I can find is the function datediff.

Can anyone show me how to achieve this in Tableau? 

1 Answer

0 votes
by (47.2k points)
  • You can make use of LOOKUP() to compute the duration using the date in the previous row of your partition:

DATEDIFF('day', LOOKUP(ATTR([Updated Date]), -1), ATTR([Updated Date]))

  • In order to get your "AB" labels, use LOOKUP() again to fetch it from the previous row:

LOOKUP(ATTR([stage]), -1) + ATTR([stage])

  • To make a histogram with the fields, you can drag [stage] to Columns, followed by [stage label](or whatever you choose to call that second calculated field we made). Now, Drag [duration] (the first field we made) into Rows. And then right click "A" in your chart and click "Hide". It's important that you hide it rather than filter it out, because it still needs to be in your partition for the table calculations to work! Then right click on the [stage] pill in your Columns card and uncheck "Show Header".

  • It's important to note that if Stage C (for example) isn't present in your data, then you will end up with a "BD" in your histogram, so here's hoping your data's pristine.

  • Caveat - One cost of using table calculations like lookup() is that they only operate on aggregated query results, which means all the data rows in question have to be fetched from the database to the Tableau client or server. So if you have a large amount of data and only want to display summary results such as the min/avg/max time to complete each phase, then table calcs can be an expensive and complicated way to get those summary measures.

  • An alternative is to reshape your data and use row level calcs, aggregate calcs or LOD calcs -- all of which can be performed by a source database. That is often simpler to manage also.

Related questions

0 votes
1 answer
asked Dec 19, 2020 in BI by Chris (11.1k points)
0 votes
1 answer
asked Oct 16, 2020 in BI by Sudhir_1997 (55.6k points)

Browse Categories

...