je zou zeggen dat het heel eenvoudig is om dit werkend te krijgen, maar zonder powerbi desktop waarbij je expressies kan testen is het niet te doen IF( 'Contract Role Assignments'[Person_BK] = 'person'[Person_BK], "J", "N" ) geeft de foutmelding "a single value for column "person_bk" in table "Person" cannot be determined". This canhappen when a measure formula refers to a column that contains many values without specifying an aggregation such als min, max, count..." chatgpt vragen komt op onderstaande formules: IF( RELATED('Person'[Person_BK]) = 'Contract Role Assignments'[Person_BK], "J", "N" ) en VAR PersonBK = SELECTEDVALUE('Contract Role Assignments'[Person_BK]) VAR PersonBKInPerson = LOOKUPVALUE( 'Person'[Person_BK], 'Person'[Person_BK], PersonBK ) RETURN IF( PersonBK = PersonBKInPerson, "J", "N" ) en VAR PersonBK = 'Contract Role Assignments'[Person_BK] VAR LookupPersonBK = LOOKUPVALUE( 'Person'[Person_BK], 'Person'[Person_BK], PersonBK ) RETURN IF( PersonBK = LookupPersonBK, "J", "N" ) en IF( COUNTROWS( FILTER( 'Person', 'Person'[Person_BK] = 'Contract Role Assignments'[Person_BK] ) ) > 0, "J", "N" ) laten alleen J zien Ik heb geen PowerBi desktop dus kan ook niet eenvoudig een formule testen, alleen via de webversie. En daar duurt het publiceren van een formule soms een eeuwigheid Wie oh wie heeft een oplossing
... View more