Code:
If(
!Contains(col_name_list, "EFT (h)"),
Current Data Table() << New Column(
"EFT (h)",
Numeric,
Continuous,
Format("Fixed Dec", 10, 1),
Formula(
:Name( "duration" ) * 24
)
)
);
Error:
Unexpected ")". Perhaps there is a missing ";" or ",".
Line 9 Column 6: ))►)
The remaining text that was ignored was
)
Resolution Problem with Formula for Column EFT (h):
I am unable to figure out, what this could be.
I have tried this too:
If(
!Contains(col_name_list, "EFT (h)"),
Current Data Table() << New Column(
"EFT (h)",
Numeric,
Continuous,
Format("Fixed Dec", 10, 1),
Formula(:duration * 24)
)
);