Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I'm wonder if it's possible to creat a calculate field in the main script.
My datasource are an excel file.
Example :
LOAD Date,
Libellé,
Débit,
Crédit
FROM
C:\Users...
I aim to do something like this:
LOAD Date,
Libellé,
Débit,
Crédit,
Sum(Credit+Debit) as Total
FROM
C:\Users...
Is it possible ?
Regards,
Pierre.
Yes. Try the following:
LOAD *, Crédit + Débit as Tot;
LOAD Date,
Libellé,
Débit,
Crédit
FROM
C:\Users...
Yes. Try the following:
LOAD *, Crédit + Débit as Tot;
LOAD Date,
Libellé,
Débit,
Crédit
FROM
C:\Users...
It works, thanks.