Forum Discussion
- UrsulaLlQrew Assistant CaptainI'm assuming the "& -Rev &" is part of the text to go inbetween digital front field and revision field.
Using the \ to escape out the quotes works, but it makes it harder to read, so I have replaced that with single quotes. The & needs to be in front and behind the QB field you are using. Hope this works!
If(Contains([Cut Status], "Fabrication Ready"),
"<div style='background-color:#0CF52B;'>(" & [Digital Front] & "-Rev" & [Revision] & ")</div>",
[Cut Status]) - GaryDoucetQrew CadetThanks Ana.
This is effecting the Contains Statement now. Like I think this should work. - UrsulaLlQrew Assistant CaptainIf(Contains([Cut Status], "Fabrication Ready",
"<div style='background-color:#0CF52B;'>(" & [Digital Front] & "-Rev" & [Revision] & ")</div>",
[Cut Status]))
See if that works - GaryDoucetQrew CadetThanks, I will try something different.
- GaryDoucetQrew CadetOk this Works. I changed the List box just to a Text field and did this Formal and it Worked.
So this issue has to be with the Contains Function.