udaykamble
Programmer
I want to display different images depending on diff conditions in one of the column in the report in report studio.
How do I do that? Please help.
How do I do that? Please help.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CASE
WHEN abs([Diff % X]) > 0.05
THEN '..\samples\images\red.jpg'
WHEN abs([Diff % X]) > 0.01 THEN '..\samples\images\yellow.jpg'
ELSE '..\samples\images\green.jpg'
END