show three formula fields (with icons) together in a fourth field
How can I show three formula fields (with icons) together in a fourth field?
I have:
'Avviso nota' + 'Avviso allegato'+'Avviso link'
.....doens't work!
The three fields have formula expression like:
if Link != null then
styled("", "", "linked")
end
What should I do? Thanks
9 replies
-
Hi,
Please try the following:
if Nota != null then
styled('Avviso nota' + 'Avviso link' + 'Avviso allegato',"", "", "pencil")
else
if Link != null then
styled('Avviso nota' + 'Avviso link' + 'Avviso allegato'"", "", "linked")
else
if Allegato != "" then
styled('Avviso nota' + 'Avviso link' + 'Avviso allegato',"", "", "attachment")
end
Or also you can try it that way:
styled('Avviso nota' + 'Avviso link' + 'Avviso allegato',"", "",
if Nota != null then "pencil"
else
if Link != null then "linked"
else
if Allegato != "" then "attachment" end)
Best, Jörg
-
thank you, tried... but doesn't still work :-(
-
I'd like to have shown the three icons together in the same fileds, not only one icon
-
in the same moment, I mean..
-
I think in a formula field you can only have one icon. You could try using unicode ( - - - ...)character instead of the build in icons.
-
what's unicode?
-
@Steven is right, works with unicode characters. Search the internet for Unicode Characters then copy and paste.
-
WOW! Thank you :-)
-
Of course, in that case you don't need "styled" function.
let d := today();
if d >= DateStart and d <= DateEnd then
""end
Content aside
- 5 yrs agoLast active
- 9Replies
- 1737Views