Skip to main content
Solved

Filter transaction list property by boolean metric

  • March 19, 2025
  • 2 replies
  • 112 views

Forum|alt.badge.img+3

Struggling to figure out how to set up a formula properly. I’m trying to create an IF statement with a condition where it looks at a transaction list property with X dimension and if it matches to a boolean metric list where X dimension is flagged as TRUE then return A otherwise B.

  • Transaction List = PL_Transactions
  • Transaction List Property = PL_Transactions.Vendor
  • Dimension = Vendor
  • Boolean Data Type Metric w/ 1 Dimension (Vendor) = Draft_Vendors

Best answer by Nathan

Hi,

 

If you want to do it in the Transaction list.result =

Draft_Vendors[BY constant:PL_Transactions.Vendor]

It’s the equivalent of a LOOKUP

2 replies

Nathan
Employee
Forum|alt.badge.img+12
  • Employee
  • Answer
  • March 19, 2025

Hi,

 

If you want to do it in the Transaction list.result =

Draft_Vendors[BY constant:PL_Transactions.Vendor]

It’s the equivalent of a LOOKUP


Forum|alt.badge.img+3
  • Author
  • Author
  • March 19, 2025

Thanks Nathan - that did the trick! I had the metric and the transaction property switched up in my formula.