I have 2 tables and want to show fields from each table in 1 RG.
Table 1
name desc color
A this … black
B which … blue
C when … red
D who … yellow
E if … pink
F following … green
Table 2
count name
5 A
4 C
10 D
6 F
Setup table 1
name text
counter table 2
desc text
color text
Setup table 2
count number
name text
In both tables the primary key is the name field.
In the RG I would like to see the following list:
name count desc
A 5 this …
B which …
C 4 when …
D 10 who …
E if …
F 6 following …
When I run the app I get a blank in the count column for all rows.
Can anyone point me in the right direction?