Ihsan,
This is a fairly standard modelling exercise. Thae basics of which are to have an input sheet (could be multiple input sheets but we don't want to confuse the example) which is a block table of information on every ship. It should look something along the lines of:
ID Ship Name Speed Tons ...
01 Bravo 10 1000 ...
02 Delta 20 1500 ...
03 Tango 50 50000 ...
...
depending on what data you've got. Then on a separate calculation sheet you want to pull information for a specific ship off the table. The best way to do this is to have a couter input cell at the top of the calculation sheet which can be set to a number. Then below the counter input cell you pull the set of information for any one ship through by using a series of INDEX formulae. i.e. to get the Ship Name you'd type the following formula (assuming the input table was the above demonstrated table and was found on cells A1:D4 of sheet Inputs and that the counter cell was in cell A1 of the current sheet) :
Code:
=INDEX(Inputs!A1:D4,$A$1+1,2)
With this method you can dynamically pull through the inputs for any one ship by amending the counter cell and these one-ship specific set of inputs can then be linked up to a set of ship specific calcs to give whatever answer you need for particular ships.
Hope this helps,
Maccas