Can println command show the value in several columns?

Hello

I am just beginner and playing around with mega 2560 for analog input.

I am trying to take two or three signals from analog inputs.

If I use Serial.Println the three values show up vertically and keep coming out.

Is it possible for the values to show up in horizontally like three columns?

So I can compare three value more easily than show three values in one columns consecutively.

Please help me.

THank you~!

Serial.print(analogValue); // print as an ASCII-encoded decimal
Serial.print("\t"); // print a tab character
Etc.

EDIT, also:
Serial.print("\t output = ");

LarryD:
Serial.print(analogValue); // print as an ASCII-encoded decimal
Serial.print("\t"); // print a tab character
Etc.

EDIT, also:
Serial.print("\t output = ");

Thanks for your help!