anyone know how to hardcode values in saved search...
# general
o
anyone know how to hardcode values in saved searches...my formula is CASE WHEN {type}='Bill' THEN 'PAYABLES' ELSE 0 END need to replace type = Bill with the word PAYABLES
j
CASE WHEN {type}='Bill' THEN 'PAYABLES' ELSE '0' END
o
excellent thanks!