Add two text fields type
Add two text fields type
I need to Sum two type text fields and then split in two.
I need to get the average of the sum of two fields.
This should make for each record that is displayed in the DataSet
I need to get the average of the sum of two fields.
This should make for each record that is displayed in the DataSet
Re: Add two text fields type
Hello.
You could use system functions like Sum() and Avg().
If you still need our help, please describe your issue more detailed with samples.
Thank you.
You could use system functions like Sum() and Avg().
If you still need our help, please describe your issue more detailed with samples.
Thank you.
Re: Add two text fields type
Text fields are kind and I generate error, I have follows. but it does not work me
{Sum(InfoMateriaBoletinCo.NotaNumEv3, InfoMateriaBoletinCo.NotaNumEv4)}
{Sum(InfoMateriaBoletinCo.NotaNumEv3, InfoMateriaBoletinCo.NotaNumEv4)}
Re: Add two text fields type
Hello,
Please try to use the following expression if need summary by all dataset:
or next for one record:
Thank you.
Please try to use the following expression if need summary by all dataset:
Code: Select all
{Sum(InfoMateriaBoletinCo.NotaNumEv3) + Sum(InfoMateriaBoletinCo.NotaNumEv4)}
Code: Select all
{InfoMateriaBoletinCo.NotaNumEv3 + InfoMateriaBoletinCo.NotaNumEv4}
Re: Add two text fields type
The first option generates errors, and the second single concatenated and does not serve me
Re: Add two text fields type
Hello.
It's very difficult to guess what do you need to get.
Did you try to use next expression:
Please, send us any sample with more detailed description.
Thank you.
It's very difficult to guess what do you need to get.
Did you try to use next expression:
Code: Select all
{Sum(InfoMateriaBoletinCo.NotaNumEv3, InfoMateriaBoletinCo.NotaNumEv4)}
Thank you.