Proportional stepper motor rotation degrees to analog input

Can we map analog input to a number of degrees to control just one revolution of stepper motor?
Or how to convert analog input to steps ?
Thank you

What are the min and max ADC readings and steps per rev?

Analog inputs are absolute. Steps are relative. To convert from absolute to relative you need to track the current position:

int Position =0;
void loop()
{
  int newPos = map(analogRead(A0),0,1023,0,StepsPerRevolution);
  int steps = newPos - Position;
  TheStepper.move(steps);
  Position = newPosition;
}