Is there anyway to make the [[S120:dc:recurringFrequencyLabel]] to lowercase

Options

So currently our [[S120:dc:recurringFrequencyLabel]] returns text start with uppercase like ‘Quarterly’. Is there a function or something to make it lower case? I tried using css to make it lowercase on email but it does support Outlook client.

Tagged:

Comments

  • @Tao Ye Na
    I'd typically create a conditional to check for the value you are wanting to change and if it gets that, convert it to the value you want.

  • @Tao Ye Na
    It's long, but S130 tag can do it. Something like:

    [[E130: “[[S120:dc:recurringFrequencyLabel]]”

    "A" "a" replaceall
    "B" "b" replaceall
    "C" "c" replaceall
    "D" "d" replaceall
    "E" "e" replaceall
    "F" "f" replaceall
    "G" "g" replaceall
    "H" "h" replaceall
    "I" "i" replaceall
    "J" "j" replaceall
    "K" "k" replaceall
    "L" "l" replaceall
    "M" "m" replaceall
    "N" "n" replaceall
    "O" "o" replaceall
    "P" "p" replaceall
    "Q" "q" replaceall
    "R" "r" replaceall
    "S" "s" replaceall
    "T" "t" replaceall
    "U" "u" replaceall
    "V" "v" replaceall
    "W" "w" replaceall
    "X" "x" replaceall
    "Y" "y" replaceall
    "Z" "z" replaceall

    ]]

Categories