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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Lookupvalue for both Integer and text

Hi Experts

 

is is possible to lookup a value from a other table where the expected result is a text based on a date. 

Lookupvalue(ControlTab[Month],Control[text], Input[month])

 

what's the way around this??

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

According to my understanding, you want to get ControlTab[Month] via LOOKUPVALUE() ,but the datetype of searched columns are different ( Control[text] is String,  Input[month] is Int ), right?

You could use 
DATE() to change the Input[month] to Date type and use FORMAT() to get MonthName like this:

Column =
LOOKUPVALUE (
    Control[Month],
    Control[Text], FORMAT ( DATE ( 2021, 'Input'[Month], 1 ), "MMMM" )
)

The final output is shown below:

 3.23.LOOKUPVALUE.PNG

Best Regards,
Eyelyn Qin
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

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

According to my understanding, you want to get ControlTab[Month] via LOOKUPVALUE() ,but the datetype of searched columns are different ( Control[text] is String,  Input[month] is Int ), right?

You could use 
DATE() to change the Input[month] to Date type and use FORMAT() to get MonthName like this:

Column =
LOOKUPVALUE (
    Control[Month],
    Control[Text], FORMAT ( DATE ( 2021, 'Input'[Month], 1 ), "MMMM" )
)

The final output is shown below:

 3.23.LOOKUPVALUE.PNG

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

amitchandak
Super User
Super User

@Anonymous , for a column from other tables you need to deal with it bit differently.

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

 

You can compare text with text and int with int

you can compare like

[Int col] & "" = [Text Colum]

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors