Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
tmears
Helper III
Helper III

lookupvalue error

I wonder if anyone could help, really struggling on it..... 

 

ProfitAllocationRaw = IF(IF(Gates[Salesperson]="Sales Person 1",[S1Year]-Gates[QGate],[S2Year]-Gates[QGate])<0,0,IF(Gates[Salesperson]="Sales Person 1",[S1Year]-Gates[QGate]-(LOOKUPVALUE(Gates[QGate],Gates[GateNumber],Gates[GateNumber]-1)),[S2Year]-Gates[QGate]-(LOOKUPVALUE(Gates[QGate],Gates[GateNumber],Gates[GateNumber]-1))))

 

I am getting “A table of multiple values was supplied where a single value was expected.”, i am thinking it is an issue with the highlighted comma.  Any thoughts?

 

 

2 ACCEPTED SOLUTIONS
dedelman_clng
Community Champion
Community Champion

Hi @tmears  - 

 

There may be mulitple spots with issues in this code. Presuming that [ ] indicates measure and Table[ ] indicated column, everywhere that you have a measure minus a column will fail. You will need to do some kind of aggregation on the column (SUM, MIN, MAX, SELECTEDVALUE, RELATED, etc) to get a single value to subtract from the measure. Same with the third parameter in your LOOKUPVALUE clauses.

 

If you need more assistance, please share your pbix with sensitive data removed so we can see what the model and the data look like.

 

Hope this helps

David

View solution in original post

Anonymous
Not applicable

Hi @tmears 

Could you tell me if your problem has been solved? If it is, kindly Accept the helpful reply as the solution. More people will benefit from it. Or you are still confused about it, here I will gvie you some advice.

In addition to , the problem may be caused by lookupvalue function.

Your measure:

 

ProfitAllocationRaw =
IF (
    IF (
        Gates[Salesperson] = "Sales Person 1",
        [S1Year] - Gates[QGate],
        [S2Year] - Gates[QGate]
    ) < 0,
    0,
    IF (
        Gates[Salesperson] = "Sales Person 1",
        [S1Year] - Gates[QGate]
            - ( LOOKUPVALUE ( Gates[QGate], Gates[GateNumber], Gates[GateNumber] - 1 ) ),
        [S2Year] - Gates[QGate]
            - ( LOOKUPVALUE ( Gates[QGate], Gates[GateNumber], Gates[GateNumber] - 1 ) )
    )
)

 

In your false result, due to the lookupvalue, it may return to multiple values where Gate[GateNumber] = Gates[GateNumber]-1, so it comes to an error. 

Could you tell me your calculate logic, show me the result you want and provide me a data model like what you are dealing with?

Or you can share your pbix file with me by your OneDirve for Business.

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @tmears 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.

 

Best Regards,

Rico Zhou

Anonymous
Not applicable

Hi @tmears 

Could you tell me if your problem has been solved? If it is, kindly Accept the helpful reply as the solution. More people will benefit from it. Or you are still confused about it, here I will gvie you some advice.

In addition to , the problem may be caused by lookupvalue function.

Your measure:

 

ProfitAllocationRaw =
IF (
    IF (
        Gates[Salesperson] = "Sales Person 1",
        [S1Year] - Gates[QGate],
        [S2Year] - Gates[QGate]
    ) < 0,
    0,
    IF (
        Gates[Salesperson] = "Sales Person 1",
        [S1Year] - Gates[QGate]
            - ( LOOKUPVALUE ( Gates[QGate], Gates[GateNumber], Gates[GateNumber] - 1 ) ),
        [S2Year] - Gates[QGate]
            - ( LOOKUPVALUE ( Gates[QGate], Gates[GateNumber], Gates[GateNumber] - 1 ) )
    )
)

 

In your false result, due to the lookupvalue, it may return to multiple values where Gate[GateNumber] = Gates[GateNumber]-1, so it comes to an error. 

Could you tell me your calculate logic, show me the result you want and provide me a data model like what you are dealing with?

Or you can share your pbix file with me by your OneDirve for Business.

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

dedelman_clng
Community Champion
Community Champion

Hi @tmears  - 

 

There may be mulitple spots with issues in this code. Presuming that [ ] indicates measure and Table[ ] indicated column, everywhere that you have a measure minus a column will fail. You will need to do some kind of aggregation on the column (SUM, MIN, MAX, SELECTEDVALUE, RELATED, etc) to get a single value to subtract from the measure. Same with the third parameter in your LOOKUPVALUE clauses.

 

If you need more assistance, please share your pbix with sensitive data removed so we can see what the model and the data look like.

 

Hope this helps

David

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors