Pivot table use date as values

I have a pivot table but I want to see if is possible to include the shift interval as a value instead of the view below


Shinft interval is calculated as

ifelse(
    isNull({Shift Start Hour}) or isNull({Shift End Hour}), 
    "", 
    concat(
        {Shift Start Hour},
        " - ",
        {Shift End Hour}
    )
)

Where the shift start hour and shift end hour are something like

ifelse(
    isNull({ShiftStartTime_TZ}), 
    "", 
    concat(
        toString(extract('HH', {ShiftStartTime_TZ})), 
        ":", 
        ifelse(
            extract('MI', {ShiftStartTime_TZ}) < 10, 
            concat("0", toString(extract('MI', {ShiftStartTime_TZ}))), 
            toString(extract('MI', {ShiftStartTime_TZ}))
        )
    )
)

I can do something similar with a time field so I want something similar to the following but with those shift interval if possible

image

in this case the time use this calculation, where date_diff is the difference in seconds of two dates

ifelse(isNull(max({Datediff_MI})),"",
concat(toString(floor(max({Datediff_MI})/3600)),":",
right(concat("00",toString(floor((max({Datediff_MI})/60))-
(floor(max({Datediff_MI})/3600)*60))),2),":",
right(concat("00",toString(floor(max({Datediff_MI})%60))),2)))

Hi @HUIL, besides using SQL or multiple visuals stacked next to each other – I’m out of ideas. In case you need further assistance with your problem, please create a sample dashboard with sample dataset showing your problem state using Arena and post it here. (Details on using Arena can be found here - QuickSight Arena).

Hi @HUIL, besides using SQL or multiple visuals stacked next to each other – I’m out of ideas. Sorry, currently this is not possible but I’m marking this for feature request. At AWS, our roadmap is primarily driven by our customers. Your feedback helps us build a better service. I have tagged this as a feature request. More features are being added on a regular basis, so please keep an eye on the What’s New / Blog . You can set up a Watching Alert by clicking on the bell icon.