Forum Discussion

Frixel's avatar
Frixel
Post Prodigy
9 months ago
Solved

Error in create measure for filter

Hello,   I try to make a filter for multiple filters(42) and create this measure but it gives this error. What is the problem? also created this     
  • Praful_Potphode's avatar
    Praful_Potphode
    9 months ago

    Hi Frixel 

    you cant use a column directly in a measure like that.the formula that you have shown in screenshot will work for new column not new measure.

    try below :

    Filter DC= 
    IF(
        MAX('ontvangen'[From] )="[email protected]",
        TRUE(),
        FALSE()
    )
    Filter DC= 
    IF(
        SELECTEDVALUE('ontvangen'[From] )="[email protected]",
        TRUE(),
        FALSE()
    )

     

    Please give Kudos or mark it as solution once confirmed.

     

    Thanks and Regards,

    Praful