I have a question about calculated fields. In one of our reports, when the search is done and the results are displayed... On the results page we want to run a specific calculation, but we are not sure how to do it.
ID Name Address Match
1 Susy ....... 3
2 John ........ 11
3 Joe ........ 1
This is similar to how our information is returned on the results page of our report. However, we would like to run a calculated field that would take the value of the "Match" field, search for the same value in the table under ID and return the name in the place of the number. Such that the results would look like this:
ID Name Address Match
1 Susy ....... Joe
2 John ........ Sally
3 Joe ........ Susy
I tried using the following code in Caspio but it failed.
SELECT ([Full_Name]) FROM [Contacts] WHERE [@field:Contact_ID]=[@field:Match]
I have a question about calculated fields. In one of our reports, when the search is done and the results are displayed... On the results page we want to run a specific calculation, but we are not sure how to do it.
ID Name Address Match
1 Susy ....... 3
2 John ........ 11
3 Joe ........ 1
This is similar to how our information is returned on the results page of our report. However, we would like to run a calculated field that would take the value of the "Match" field, search for the same value in the table under ID and return the name in the place of the number. Such that the results would look like this:
ID Name Address Match
1 Susy ....... Joe
2 John ........ Sally
3 Joe ........ Susy
I tried using the following code in Caspio but it failed.
SELECT ([Full_Name]) FROM [Contacts] WHERE [@field:Contact_ID]=[@field:Match]