Forum Discussion
Anonymous
2 years agoNot applicable
Show Only Matching Values
Hi Can someone help me on how to create a measure or m-code in showing only values that matched the Invoice Number for the fak column and don't display the rest? //NT
SamWiseOwl
2 years agoSuper User
If(
SELECTEDVALUE(Sales[Invoice Number]) = SELECTEDVALUE(Sales[faktuurnr]) --Change to your tablename
,"Match"
," "
)
Something like that?
Anonymous
2 years agoNot applicable
I add the measure in the table but no colum is being created as shown. am i doing something wrong?