Forum Discussion

lxiaoxi's avatar
lxiaoxi
Frequent Visitor
8 years ago
Solved

Get Selected Value Based on Two Slicers

Hi,

I am trying to figure a way to get selected value based on two slicers. There is no calculation about the value, just return the value itself.

For example:

ProductDriveCostTime
AI522018-07-16T00:00:00Z
AL392018-07-31T00:00:00Z
AE692018-07-29T00:00:00Z
AI972018-07-28T00:00:00Z
AI922018-08-07T00:00:00Z
AI102018-08-06T00:00:00Z
AI752018-08-05T00:00:00Z
AL232018-07-23T00:00:00Z
BI892018-07-25T00:00:00Z
BE662018-07-28T00:00:00Z
BL382018-07-16T00:00:00Z
BI282018-07-31T00:00:00Z
BL852018-07-29T00:00:00Z
CE602018-07-28T00:00:00Z
CI502018-08-07T00:00:00Z
CE912018-08-06T00:00:00Z

I would like to have the drive and product slicers and create a trend line for that product on that drive crossing time.

  • Hi lxiaoxi,

     

    Create measures:

    selected Product = SELECTEDVALUE(Table3[Product])
    
    selected Drive = SELECTEDVALUE(Table3[Drive])

     

    Best regards,

    Yuliana Gu

1 Reply

  • v-yulgu-msft's avatar
    v-yulgu-msft
    Microsoft Employee

    Hi lxiaoxi,

     

    Create measures:

    selected Product = SELECTEDVALUE(Table3[Product])
    
    selected Drive = SELECTEDVALUE(Table3[Drive])

     

    Best regards,

    Yuliana Gu