I'm trying to pull in the corporate card amount (i...
# suiteanalytics
s
I'm trying to pull in the corporate card amount (it's in the summary section) on an expense report saved search. Everything I try comes up as zero. Anyone familiar with how to do this?
m
You have to use the line item of the expense report and only pull the ones where Non-reimbursable = T (or corporate card = T)
Then make it a summary search to sum up all the amounts
Usually i use a formula like this Formula(Currency) CASE WHEN {coporatecard} = 'T' THEN {amount} END
s
Gotcha. Thank you!!