Good afternoon,
I have a formula in DAX for Power Pivot that is working, but I want to be able to look by including an if()
Formula 1 works great, but instead of having multiple columns I want to be able to change the Criteria for check[Search1] to a formula, but I cant get the Formula 2 to work without a "list of Multiple values was supplied where a single value was expected"
thanks in advance.
Gavin
I have a formula in DAX for Power Pivot that is working, but I want to be able to look by including an if()
Formula 1 works great, but instead of having multiple columns I want to be able to change the Criteria for check[Search1] to a formula, but I cant get the Formula 2 to work without a "list of Multiple values was supplied where a single value was expected"
Code:
Formula 1
LOOKUPVALUE(Source[Title],Source[Search1.1],'check'[Search 1.1],Source[CAllRank],"1",Source[Date],check[Date],Source[Call Outcome],"Success")))))
Formula 2
if(LOOKUPVALUE(Source[Title],Source[Search1.1],'check'[Search 1.1],Source[CallRank],"1",Source[Date],check[Date],Source[Call Outcome],"Success")>blank(),
LOOKUPVALUE(Source[Title],Source[Search1.1],'check'[Search 1.1],Source[CallRank],"1",Source[Date],check[Date],Source[Call Outcome],"Success",
thanks in advance.
Gavin