Pivot Table Question

  • Thread starter Thread starter Pivot Table Question
  • Start date Start date
P

Pivot Table Question

Hello,

I have created a pivot table and the data that I am attempting to work with
is a number that is less than one. (i.e. .23 quarts) The tables, querys and
other forms I create show the numbers that are less than one however the
pivot table will not. Can anyone help me fix this?

Thank you in advance for your help!
 
The problem is the data type of the field you are trying to see in the pivot
table. In your query rather than just referencing the fieldname use the
function Val to convert the field into a value with decimals. eg [fieldname]
becomes expr1:Val([fieldname]).

Dean
 
Back
Top