I've had a look at the schedule and was able to give vivekm an answer to his problem.
It is possible to configure the Gantt portion of the display so that it shows significant amounts of information.
View > Gantt
Format > Bar styles...
In the Bar Styles dialog, you can click on each of the items in the top half of the display and additional information for it appears in the bottom half on two tabs. One tab ("Bars") lets you control the display of the Gantt bars (colours, shapes, etc.).
The other tab ("Text") lets you control the display of textual information along with the bar. These text fields are displayed above, below, to the left, to the right and within the bar.
And now you have probably guessed what was happening: the previous user of the plan had set it up so that information was appearing above, below, to the left and to the right of the bar. The amount of "real estate" needed to display all this information controls the size of the row being displayed.
But it was just a little trickier than that. The previous user had set it up to display information for Tasks above and below the bar but even when I cleared that out, it didn't fully solve the spacing problem.
In addition to being able to give a default set of display settings for bars, it is also possible to custom tailor the display on selected tasks. The previous user had also gone to one of the milestone tasks, clicked the RightMouseButton on the diamond in the Gantt display, selected "Bar Styles" from the popup properties menu and then set that one milestone to have text above and below.
Once I cleared that out, the display reverted to normal.
The Format > Bar styles dialog lets you display a single piece of information in each of the 5 locations (above, below, left, right, inside) related to the bars. Let's suppose that vivekm still wants to display all that information and also wants to display it on a single line of text to the right of the Gantt bar.
Here's a simple example that shows you how to do it:
View > Gantt
Insert the Text1 column
RightMouseButton on the column header
Click on Customize Fields...
In the Customize Fields dialog popup, click on the button labelled "Formula..."
In the "Formula" dialog popup, enter an appropriate formula. This formula will display the Start and Finish for the task:
Code:
"S:" & [Start] & " -- F:" & Year([Finish]) & "/" & Month([Finish]) & "/" & Day([Finish])
You'll notice that I've chosen two different approaches for the two different dates. If you try this you will see the reason why.
Click on OK to accept the formula; click on OK to apply the customization.
The Gantt display won't have changed.
Click on Format > Bar styles... to display the Bar Styles popup dialog
Click once on the row labelled "Task"
Click once on the tab labelled "Text"
in the box labelled "Right", choose the Text1 field.
Click on OK to apply the Bar Styles.
You should now see the two fields (Start and Finish) being displayed.