I have an expression that I got help with on here. This is the link: format lookupset expression
Now, I've been asked to put indicators instead of bullet points in front of each line.
Below is the criteria for the indicators. I do have this data in my dataset to use.
Red indicator (diamond shape) = Issues with Priority of 4 OR Resolution Due Date more than 5 days late.
Yellow indicator (triangle shape) = Issues with Priority of 3 OR Resolution Due Date between 1 and 5 days late.
What I would like to see on one line is an indicator based on the criteria above, then the date, then the description. Next line is another indicator, date, description etc.
Currently this is what my expression look like:
=" " + Chr(183) + " " +
Join(Lookupset(Fields!ProjectName.Value,
Fields!ProjectName.Value,
Fields!DUEDATE.Value & " - " &
Fields!Title.Value, "Ds2MinIssues"),
vbCrLf + " " + Chr(183) + " ")
This is what I want it to look like:
Any help with this is appreciated.


