Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
here's my problem, i have two excel files, every file has a lot of fields for example,
first file,
file 1;
load
A
B
C
D
E
FROM file1;
second file
X
H
J
G
M
N
FROM FILE 2
what i want to do is:
take the field B and the field M and make the sum.
that's all.
thank's for help
Hi,
Try like this in a text box
=sum(B)+sum(M)
Regards
ASHFAQ
Is the data related ? For example, are all the fields the same (ie: A=x , B=H, C=J etc...) ?
What is the join key for two files?
no, the fields are not the same , and when i do sum(B)+sum(M) i've got an error.
there's no join key.
Hi,
Did you try my solution?
If possible share sample data.
Regards
ASHFAQ
yes i did but i've got an error
where i should write sum(B)+sum(A)??
Create new text object and write below code.
=sum(B)+sum(M)
Modify your fields accordingly.
Regards
ASHFAQ