Forum Discussion
Image Pro by Cloudscope & Filtering
- 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.
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.
- Anonymous3 years agoNot applicable
Hello,
Thanks so much for your response!
How did you create the measure for the "Blank Value"? When I create a measure, I am not able to change the data category to 'Image URL'.
I created a column in my data field for the blank value image but the base64 code that I enter does not work. Do you know why this may be?
Thanks