I'm running a program that returns output to a text file (notepad). Each line of output contains a four digit ID, name of client, number of times ID is in the file, and an amount. For example:
2701 RADIOLOGY CONSULTANTS, INC. 2 3,225,228.00
2710 TEST 1 190.00
2607 RADILOGICAL CONSULTANTS PROF ASSOC 1 325,695.65
As of now, this is the type of output I get. The names will always vary in length. What I want to do is have all the numbers after the names line up, so that my output would look like:
2701 RADIOLOGY CONSULTANTS, INC. 2 3,225,228.00
2710 TEST 1 190.00
2607 RADILOGICAL CONSULTANTS PROF ASSOC 1 325,695.65
I've searched through the forums and can't seem to find anything that will help me here. I've tried using formatting, such as (Format(Amt, "Standard"
, "@@@@@@@@"
, but it's not helping to line up the numbers. I would greatly appreciate any input!
Thanks!
2701 RADIOLOGY CONSULTANTS, INC. 2 3,225,228.00
2710 TEST 1 190.00
2607 RADILOGICAL CONSULTANTS PROF ASSOC 1 325,695.65
As of now, this is the type of output I get. The names will always vary in length. What I want to do is have all the numbers after the names line up, so that my output would look like:
2701 RADIOLOGY CONSULTANTS, INC. 2 3,225,228.00
2710 TEST 1 190.00
2607 RADILOGICAL CONSULTANTS PROF ASSOC 1 325,695.65
I've searched through the forums and can't seem to find anything that will help me here. I've tried using formatting, such as (Format(Amt, "Standard"
Thanks!