Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
DATATEMP:
LOAD
GEO&'.'&[Operating Area]&'.'&[Sales_Region]&'.'&Territory&'|'
&upper(ACCOUNT_SEGMENT)&'|'
&[Hyperion Budget Unit]&'.'&SCBU&'|'&left(Fiscal_Period,4)&'-Q'&Right(Fiscal_Period,1)
as [~MasterKey],
Pipe
FROm
(ooxml, embedded labels, table is Data);
Hi Raghu,
I am hoping I understand your question correctly. You can achieve that with another preceding load statement:
LOAD
GEO&'.'&[Operating Area]&'.'&[Sales_Region]&'.'&Territory&'|'
&upper(ACCOUNT_SEGMENT)&'|'&[NCV Type]&'|'
&[Hyperion Budget Unit]&'.'&SCBU&'|'&left(Fiscal_Period,4)&'-Q'&Right(Fiscal_Period,1)
as [~MasterKey];
LOAD
*,
Pipe,
PNCV As [NCV Type]
FROm
(ooxml, embedded labels, table is Data);
Thanks