I want to show multiple average columns based on the same data in one table (A), based on the corresponding drop down value from another table (B).
My table A:
Result: Number
My table B:
Type: Drop Down (“X”,“Y”,“Z”)
So I want to get a result that is:
Average (X.Number), Average (Y.Number), Average (Z.Number)
Is this at all possible using views or tables straight out of the box, or do I need to iterate over a result set and create this instead?
I have a feeling the answer is the latter, but I want to check…