In a pivot table, can I insert a calculated field to evaluate a text entry?
My calculated field is
=IF(DESCRIPTION="C",AMOUNT*10)
My result is always 0, regardless of whether or not the corresponding entry is a C or not.
If I reverse it and make my field look for inequality, I get this:
=IF(DESCRIPTION<>"C",AMOUNT*10)
This results in every single entry (even those that are C) being multiplied by 10.
What am I missing?
My calculated field is
=IF(DESCRIPTION="C",AMOUNT*10)
My result is always 0, regardless of whether or not the corresponding entry is a C or not.
If I reverse it and make my field look for inequality, I get this:
=IF(DESCRIPTION<>"C",AMOUNT*10)
This results in every single entry (even those that are C) being multiplied by 10.
What am I missing?