T
ttp
I have (2) tables that I have joined in a query. The link is based on
Order_Num. I would like the results to come back in a single line. But, my
current results are showing as separate lines. Can anyone assist?
Table 1:
ORDER_NUM
1245407
Table 2:
ORDER_NUM ORDER_TYPE TURBINE_TECH LINE_TYPE
1245407 Performance Services - GEII STEAM CMU Line Type
1245407 Performance Services - GEII STEAM CMU Bill Line
1245407 Performance Services - GEII STEAM Flow Line Type
Required Output:
ORDER_NUM ORDER_TYPE TURBINE_TECH LINE_TYPE1 LINE_TYPE2
1245407 Performance Services STEAM CMU Bill Line Flow Line Type
Basically I would like to take from a alphabetical list the 1st and last
line type. I also insert a new field allocated_detail based upon the
following expression:
IIf((Mid([ERP export]![LINE_TYPE],1,4)="Flow" Or Mid([ERP
After trying to troubleshoot the issue, I find this expression in the field
is causing the output to be displays as 2 separate lines.
Order_Num. I would like the results to come back in a single line. But, my
current results are showing as separate lines. Can anyone assist?
Table 1:
ORDER_NUM
1245407
Table 2:
ORDER_NUM ORDER_TYPE TURBINE_TECH LINE_TYPE
1245407 Performance Services - GEII STEAM CMU Line Type
1245407 Performance Services - GEII STEAM CMU Bill Line
1245407 Performance Services - GEII STEAM Flow Line Type
Required Output:
ORDER_NUM ORDER_TYPE TURBINE_TECH LINE_TYPE1 LINE_TYPE2
1245407 Performance Services STEAM CMU Bill Line Flow Line Type
Basically I would like to take from a alphabetical list the 1st and last
line type. I also insert a new field allocated_detail based upon the
following expression:
IIf((Mid([ERP export]![LINE_TYPE],1,4)="Flow" Or Mid([ERP
export]![LINE_TYPE],1,6)="Eng Fl" Or Mid([ERP
export]![LINE_TYPE],1,3)="CMUl") And Left([ERP
export]![TURBINE_TECH],3)="STE","Steam Flow"," ")
After trying to troubleshoot the issue, I find this expression in the field
is causing the output to be displays as 2 separate lines.