Jump to content
  • 0

Membership fee


TakolinJan

Question

Hello,

I would like to calculate the membership fee for members in my datapage. I would like to find in my table "member" the addition of data from the table "Shop". 

The final goal is to have a "tabular report" with one line per member and 5 columns. [3 columns for member information (AK105_calculeted, bionetz_calculeted, insurance_calculeted), 1 column for the addition of "shop A" and "Shop B" and the total at the end.]
Example: XYZ Member | 475 | 100 | 0 | 300= 875

I do not see how to do it ... Thank you.

Capture.jpeg.d05b90c7972ab281e00b386f20fc7f51.jpeg

 

 

P.S. I speak French and the translation is 100% google

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 1

You need to create a Report DataPage based on your member Table. In your Shop table you should have Member_ID

Then you can read the values for this member from Shop table using SELECT statement. Refer to https://www.w3schools.com/sql/sql_select.asp

For instance:

SELECT field name FROM table name WHERE condition

SELECT SUM(Shop A) FROM ShopTable WHERE Member_ID = [@field:Shop_ID] 

Another calculated field can be added for Shop B:

SELECT SUM(Shop B) FROM ShopTable WHERE Member_ID = [@field:Shop_ID] 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...