Forum Discussion
USERELATIONSHIP visual has exceeded available resources
- Anonymous5 years ago
I did solved my issue by changing the main measure ( Measure1) for this one:
MeasureNew:=
VAR C10= CALCULATETABLE(VALUES(FACT_1[ID]),FACT_1[CANAL]=10) // IDs within canal 10
VAR C14= CALCULATETABLE(VALUES(FACT_1[ID]),FACT_1[CANAL]=14) IDs within canal 14
VAR EX10= EXCEPT(C10,C14) unique IDS in canal 10 but non in canal 14
RETURN
COUNTROWS(EX10) count of ids just within canal 10
I did solved my issue by changing the main measure ( Measure1) for this one:
MeasureNew:=
VAR C10= CALCULATETABLE(VALUES(FACT_1[ID]),FACT_1[CANAL]=10) // IDs within canal 10
VAR C14= CALCULATETABLE(VALUES(FACT_1[ID]),FACT_1[CANAL]=14) IDs within canal 14
VAR EX10= EXCEPT(C10,C14) unique IDS in canal 10 but non in canal 14
RETURN
COUNTROWS(EX10) count of ids just within canal 10