Hello
I have two Fact Tables F1 and F2 they are joined in the model , But i am trying to make a calcuation and it is not working
I have a query like this
Select F1.a
F1.b
(select sum (F2.x) from F2 where F2.y = F1.c and F2.z = F1.d) ,
From F1
where
F1.e = 'w'
Is there a way to add a calculatiojn of F2.x in the logical table F1 ?
Thanks