This is the first part of the estimate response form report header that has our company info and also our phone number. In the original report it put the phone number right after the zip with no space. I found the place in crystal that pertains to this and added the +” “ after their code and it added a space. I need to know how to make it move the phone number down a line.
HYPNEUMAT, INC.
5900 WEST FRANKLIN DRIVE
FRANKLIN WI 53132-9178 414-423-7400 FAX:7414
StringVar sAdd0Value;
sAdd0Value:="";
If Not IsNull({Rpt_EstimateResponseFormSp;1.Addr0}) Then
sAdd0Value:=sAdd0Value+{Rpt_EstimateResponseFormSp;1.Addr0}+" "
Else
sAdd0Value:=sAdd0Value;
If Not IsNUll({Rpt_EstimateResponseFormSp;1.ParmsPhone}) Then
sAdd0Value:=sAdd0Value+{Rpt_EstimateResponseFormSp;1.ParmsPhone}
Else
sAdd0Value:=sAdd0Value;