I have created 9 calculated fields that return the desired results. Now I want to create a single dimension (or measure if more appropriate) that combines the fields into one by appending the data, not creating a combined string field. I know I can do this in Excel very easily, but am at a loss in Tableau. Please see screen shots for more information.
Pic 1- This is the code for each calculated field (only the number of minutes are changed). > 75 also has an if statement attached.
Pic 2 - This is a combined field of all the data I want in one column. This is validating that my calculation fields are returning the desired result.
The end goal is to create a single bar chart based on the combined data. Thanks for any assistance.
columns(1) & ", " & columns(2)
would do in VBA. So, if column(1) had 10 rows (Jan1-10) and column(2) had 20 rows(Jan11-30), I would want my combined column to have 30 rows (Jan1-Jan30). Is that a little clearer? – Michael Byars