Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Image Pro by Cloudscope & Filtering

Hello,   I have created a dashboard where I can filter different manufacturing lines (with the Slicer) and the respective floor plan will display as an image (courtesy of "Image Pro by Clouscope")....
  • v-jianboli-msft's avatar
    3 years ago

    Hi Anonymous ,

     

    Based on your description, I have created a simple sample:

    First, create a Measure to display the image you want to display when nothing is selected(The DAX is the base64 code of the image)

    Then create a measure:

    Measure = 
    SWITCH(TRUE(),
    ISFILTERED('Table'[AccountId]),SELECTEDVALUE('Table'[Show profile]),[Blank Value])

    Final output:

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.