Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I've got a syntax issue i can't solve. Below script gives an error on '10Y_ABND_costs'; because it starts with a number.
I've tried Double quotes, brackets and combinations, but then there's no match with my PNL_Lines value.
Can anyone help me with the right syntax for this value '10Y_ABND_costs'?
FOR Each b in ....,'10Y_ABND_costs',.....
Concatenate(Budget)
Load PnL_Lines,
.......
Bedrag as $(b),
.......
resident Budget_Temp
Where PnL_Lines='$(b)' ;
Next
drop tables Budget_Temp;
May be this:
FOR Each b in ....,'10Y_ABND_costs',.....
Concatenate(Budget)
Load PnL_Lines,
.......
Bedrag as [$(b)],
.......
resident Budget_Temp
Where PnL_Lines = '$(b)' ;
Next
May be this:
FOR Each b in ....,'10Y_ABND_costs',.....
Concatenate(Budget)
Load PnL_Lines,
.......
Bedrag as [$(b)],
.......
resident Budget_Temp
Where PnL_Lines = '$(b)' ;
Next
Thanks Sunny.