Usually when I import data from a table I won't be able to use the fields directly when I'm creating "New Measure". I usually get the following error: "Calculation error in measure 'Range'[measure 1]: A single value for column 'S11' in table 'Range' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result. "
The following trick helps me to get around the error:
%Show text values in PowerPivot, where Range is table name and S11 is column reference.
=CALCULATE(
VALUES(Range[S11]);
FILTER(Range;
COUNTROWS(VALUES(Range[S11]))=1))
Is it possible to import data so I can use it directly without manipulate it?