Probably just write code that "maps" the known range to a range you want... for example, you know the sensor will give you 11 to 1023... and if you want to make the output range 0 to 100...
value = map(analogRead(sensorPin, 11, 1023, 0 100); // pin, min input, max input, min output, max output