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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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