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
Hi Anonymous
Create a measure like this:
Same day payment =
If(
SELECTEDVALUE(Sales[Invoice Number]) = SELECTEDVALUE(Sales[faktuurnr]) --Change to your tablename
,1
,0
)
Add it into the filter pane of your visual and filter to 1: