Forum Discussion
Steg
Helper I
5 years agoReport with (first) information from two separate tabels
I have two tables: a table names and roles (A) and a table with case numbers (B) Table A CaseID Name Role 1 John Applicant 1 Jim Applicant 1 Patrick Defendant 2 Emma A...
- 5 years ago
Steg , Join A and B on CaseID
Create a Matrix
Row -> B[CaseNr]
Column -> A[Role]
Values = Min(A[Name]) //you can use max/first/last too
amitchandak
Super User
5 years agoSteg , Join A and B on CaseID
Create a Matrix
Row -> B[CaseNr]
Column -> A[Role]
Values = Min(A[Name]) //you can use max/first/last too
Steg
Helper I
5 years agoThanks, works perfect.