Hi,
I i have the following
EVALUATE
VAR NB =
CALCULATETABLE ( Table2, FILTER ( ALL ( Table2 ), Table2[Column2] <> "B" ) )
RETURN
NB
is there a way to refer to 'column2' of the table NB, not the original so something like
I know this dos not work but I hope illustrates what I would like to do.
Richard
I i have the following
EVALUATE
VAR NB =
CALCULATETABLE ( Table2, FILTER ( ALL ( Table2 ), Table2[Column2] <> "B" ) )
RETURN
NB
is there a way to refer to 'column2' of the table NB, not the original so something like
Excel Formula:
EVALUATE
VAR NB =
CALCULATETABLE ( Table2, FILTER ( ALL ( Table2 ), Table2[Column2] <> "B" ) )
RETURN
CALCULATETABLE( NB, FILTER(ALL( NB) , NB "Column1" = X ) )
or
CALCULATETABLE( NB, FILTER( ALL( NB) , NB [Column2] = "A" ) )
I know this dos not work but I hope illustrates what I would like to do.
Richard