Forum Discussion
Arioli_Chezhian
Helper II
3 years agoCreate calculated column in Live connection
Hello All, I have 2 tables, Table 1 is live connection(Using existing dataset) and Table 2 is import file. The Employee ID present in import file should be shown as "Flag - Internal"...
- 3 years ago
Arioli_Chezhian Please Try This one.
Flag =IF (SELECTEDVALUE ( 'Table 1'[Emp ID] ) = MAX ( 'Table 2'[Emp ID] ),"Internal","External")
Arioli_Chezhian
Helper II
3 years agoMahesh0016 - One to One
Mahesh0016
Super User
3 years agoArioli_Chezhian Please Try This one.
Flag =
IF (
SELECTEDVALUE ( 'Table 1'[Emp ID] ) = MAX ( 'Table 2'[Emp ID] ),
"Internal",
"External"
)