Hey all - saved search question.. I am making a Fa...
# general
m
Hey all - saved search question.. I am making a Facebook product feed using a saved search and need a way to concat a {pricelevel} with 'USD' and cannot figure this out. Everything I try gives an error message. Any thoughts?
m
{pricelevel}
would be the name of the price level, do you want that or the actual price? Either way, you should be able to use a Formula (Text) with
'USD  ' || {pricing.pricelevel
or
'USD  ' || {pricing.unitprice}
m
So, what I'm trying is..
case when ({pricelevel8} < {pricelevel7}) then {pricelevel7} || ' USD' else {pricelevel8} ' USD' end
but I think I'm trying to combine currency with a string?
m
{pricelevel8} ' USD'
- you are missing the
||
here
m
@michoel you are my favorite person. Thank you!