URGENT HELP : pressure sensor

I have a problem in this sensor I did not know how to occupy it.

Output signal : 0 ... 5V

When reading the serial gives values randomly.

Datasheet in the attachments please help me to write code

08-Pressure-Transmitter.pdf (1.11 MB)

That PDF shows several different items, which ONE do you have?

Show us how the sensor is wired to the Arduino? A schematic (preferred) or a clear photo would help. Post the code and a sample of the code output. Which Arduino are you using?

Please read the "how to use this forum-please read" stickies to see how to post code and some hints on how to ask a question?

If you have not already seen it, the analog read serial example might help.

Off the cuff, with so little information, I would bet that if you are using the two wire unit, then one wire goes to 5V the other to A1 through A5, analog input. The Arduino can read analog values between 0 and 1023, the voltage you register in the analog pin will convert to the bars of pressure in the provided chart from the pdf file you provided. If you are using a three wire system then one wire will be 5v, one will be ground, and the other signal, but you will likely have to take readings in pairs, from the chart it appears that at extremely low pressure you will actually be receiving a two number code to calculate the pressure. Simply use a Select Case routine to output the pressure based on the voltage returned from 5v to A1.

The datasheet shows 4 types of voltage output sensors, 0...5V, 0...10V, 1...5V and 0.5...4.5V, also you did not state the pressure range of your sensor.