I have written this formula a few different ways and in each case, I get the result but am unable to format as currency.
Error: Your result type is not a number or a date. Formatting options are currently only available if your result type is a number or a date.
Here the two most successful attemps:
IF(
AND(
OR(
{Channel} = "Print",
{Channel} = "Digital"
),
{New | Repeat} = "New"
),
IF(
{Channel} = "Print",
"$" & VALUE("450"),
IF(
{Channel} = "Digital",
"$" & VALUE("75"),
""
)
),
""
)
IF(
AND(
OR(
{Channel} = "Print",
{Channel} = "Digital"
),
{New | Repeat} = "New"
),
IF(
{Channel} = "Print",
450,
IF(
{Channel} = "Digital",
75,
""
)
),
""
)
Any insight is greatly appreciated!!!