Hi, this is more a a theory question than practical;
in the measure ;
These two tables are not connected, and if you just use the comparison operator Table1 cannont 'see' Table3 , but as soon as you use
MIN or MAX the Table3 columns show up in the intelisense options, the MS docs does not have any info on who this works,
any information or direction to where it could be found would be appreciated.
Richard.
in the measure ;
Excel Formula:
Tbetween:=CALCULATE([TotalUnits],
FILTER(ALL(Table1[Units]),
Table1[Units] <= MAX(Table3[Max]) && Table1[Units] >= MIN(Table3[Min]) ) )
These two tables are not connected, and if you just use the comparison operator Table1 cannont 'see' Table3 , but as soon as you use
MIN or MAX the Table3 columns show up in the intelisense options, the MS docs does not have any info on who this works,
any information or direction to where it could be found would be appreciated.
Richard.