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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
harirao
Post Prodigy
Post Prodigy

Function 'LOOKUPVALUE' does not support comparing values of type Number with values of type Text. Co

Hi All,

I'm creating a new column in a Main table as LOOKUPVALUE "Product Column in text format".
In cost Table "Part No Column in text format" & '"Total Colum in INTEGER format".
The following format example:

C3.PNG
Below is a DAX column created, where I am getting an error
"Function 'LOOKUPVALUE' does not support comparing values of type Number with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values."

C1.PNG

 

TEST! = LOOKUPVALUE(
    Icost[Part No.],
         Icost[Total],
             FORMAT(PATHITEM ('Main Table'[Product],1,0), "NA"))

Help me to fix this issue.
 
Thank you
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@harirao , The first one is the return value.

 

I think you need like

 

maxx(filter( Icost, Icost[Part No.] = FORMAT(PATHITEM ('Main Table'[Product],1,0), "NA")), Icost[Total])

 

refer 4 ways (related, relatedtable, lookupvalue, sumx/minx/maxx with filter) to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@harirao , The first one is the return value.

 

I think you need like

 

maxx(filter( Icost, Icost[Part No.] = FORMAT(PATHITEM ('Main Table'[Product],1,0), "NA")), Icost[Total])

 

refer 4 ways (related, relatedtable, lookupvalue, sumx/minx/maxx with filter) to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.