March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi guys,
I'm trying to retrieve a value from another column using the DAX function LOOKUPVALUE(), but I'm getting a very annoying error: A table of multiple values was supplied where a single value was expected.
I'm trying to execute the following DAX formula:
next trans name = VAR visord = [order_within_visitor] VAR visid = [visitor_id] RETURN if(visord = MAXX(FILTER('public pageview', [visitor_id] = visid), 'public pageview'[order_within_visitor]),
"Exit",
LOOKUPVALUE([page_transname], 'public pageview'[order_within_visitor], (visord+1), 'public pageview'[visitor_id], visid ))
I want to retrieve the next value of a series and put it in the "next trans name" field. I need to check if it is the last value of the series, because it should have a different behaviour when it is. If it's not the last number in the series, it should lookup the page_transname for that record and put it in the "next trans name" field.
I have something like the following datastructure (very much simplified):
visitor_id | order_within_visitor | page_transname |
0 | 1 | Home |
0 | 2 | About |
0 | 3 | Search |
1 | 1 | Home |
1 | 2 | Detail |
Does someone know what the problem might be?
Thanks!
Solved! Go to Solution.
Tackled the problem! Happens to be that there are 2 duplicate values in my dataset of 100,000 records... Didn't see that!
Tackled the problem! Happens to be that there are 2 duplicate values in my dataset of 100,000 records... Didn't see that!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |