An arithmetic operation is being carried out on a non-numeric type
Hi,
I have a pivot table report that contains the following layout
Columns - Month Name
Rows - Market
Measures - new proposals, approvals, conversions (aggregation rule is COUNTS)
I am trying to create a new columns that calculates the approval rate - approvals/new proposals
I have written the following statement in fx of a new column, the SQL is derived from the columns approvals and new proposals
case when "Agreement Fact".Status in('CAP', 'LIV') then "Agreement Fact"."Agreement Num" else null end /"Agreement Fact"."Agreement Num"
I get the following error
An arithmetic operation is being carried out on a non-numeric type
Can anyone help?
Thanks