I have a very large survey 123 report and I want my field which is a select one to show the media::Image that goes with it in my survey 123 report, it does not to be as simple as I thought it would be.
Thank you,
Audra
Solved! Go to Solution.
You can add an image and point it to a service URL that matches your field value:
${$image | src:"https://anyserver.com/dynamicpage.ashx?data=" + my_field}!
This won't be your media::Image. It's part of the survey form and doesn't get submitted to the survey data. You would need to manually construct the URL to a publicly accessible image.
You could achieve the same thing using conditional report elements; showing an image URL based on the if statement
You can add an image and point it to a service URL that matches your field value:
${$image | src:"https://anyserver.com/dynamicpage.ashx?data=" + my_field}!
This won't be your media::Image. It's part of the survey form and doesn't get submitted to the survey data. You would need to manually construct the URL to a publicly accessible image.
You could achieve the same thing using conditional report elements; showing an image URL based on the if statement
thank you, Christopher! This was very helpful and worked 🙂