Forum Discussion

Antonio195754's avatar
Antonio195754
Helper IV
3 years ago
Solved

Using lookupvalue for hierarchy filter

Hello,   I'm using the following column formula to return my hiearchy filter  CHANNEL NAME = lookupvalue('Hierarchy Table'[CHANNEL],'Hierarchy Table'[ID],'B.Opportunity'[ID__C])   It works, but...
  • Ashish_Mathur's avatar
    3 years ago

    Hi,

    Try this

    =if(isblank(lookupvalue('Hierarchy Table'[CHANNEL],'Hierarchy Table'[ID],'B.Opportunity'[ID__C])),"XYZ",lookupvalue('Hierarchy Table'[CHANNEL],'Hierarchy Table'[ID],'B.Opportunity'[ID__C]))

    Hope this helps.

  • Antonio195754's avatar
    Antonio195754
    3 years ago

    Figured out how to tackle this one.  I just filtered the given outcome i needed to see with a measure, and date a date difference of greater than 0 and put it in a scorecard.  Thanks for the help! Ashish_Mathur