Forum Discussion

some1else's avatar
some1else
Helper II
5 years ago
Solved

Lookupvalue error

Hi guys.   Past week I had this working, now I made some adjustments to my data and it no longer works. So, I'm hoping someone can help me.   Background info: The street name can exist in anothe...
  • v-yingjl's avatar
    v-yingjl
    5 years ago

    Hi some1else ,

    Try to use firstnoblank() to create columns:

    Column = 
    CALCULATE (
        FIRSTNONBLANK ( 'Folhal'[COMPRIMENTO], 1 ),
        FILTER (
            'Folhal',
            'Folhal'[RUA] = 'OTs'[RUA]
                && 'Folhal'[FREGUESIA] = 'OTs'[FREGUESIA]
        )
    )

    Please refer this viedo about how to deal with this error in lookupvalue.

     

    In addition, attached a simple sample in the below, hopes it could help.

     

    Best Regards,
    Community Support Team _ Yingjie Li
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.