Hi there, Please pardon me if this has already been asked; I am new to macros in general and this is my first posting in the Community Forums and could not find anything on this topic in my initial search. I am currently writing macros for the DnD5e Character Sheet developed by by John Myles ( Actoba on Roll20 or @jmyles85 on Twitter ) and had a couple questions on how to format the roll figures for advantage and disadvantage as illustrated in the first template below. The first is accomplished merely by inserting %{selected|Athletics_Check} whereas the second uses the following code. -- /w GM &{template:5eDefault}{{ability=1}}{{title=Athletics (STR)}}{{subheader=@{selected|character_name} • Ability Check}}{{Result= [[1d20 + [[@{selected|Str Mod}+0]] ]] | [[1d20 + [[@{selected|Str Mod}+0]] ]]}}{{outputall=1}} -- (1) Is there a way to replicate the "faded" formatting of the 1 above with the 3 below? In general, I am unsure how to dynamically depict formatting based on comparative results. In other words, how do I tell the system that: the 18 is greater than 3; and (in the case of advantage) to fade out the 3? (2) Where might I find the source code is for %{selected|Athletics_Check}? (3) Is there a way for me to mimic %{selected|Athletics_Check} without calling three separate conditional predicates after asking the user for Normal|Advantage|Disadvantage? (4) What does % mean in general in contrast to @? It seems that the former is used to run a function whereas the latter just looks up a field, but are there any other distinguishing factors? Thanks!