Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi Team,
I have base table as below
| Code | Region | Sales |
| 123 | 10 | |
| 123 | ABC | 20 |
| 456 | 30 | |
| 456 | DEF | 40 |
I have created a Distinct value from code as below
| Code |
| 123 |
| 456 |
I need to create allokup region column from the base as below.
If the value if blank in region it should look for next value.
| Code | Region |
| 123 | ABC |
| 456 | DEF |
Thanks in advance !
Solved! Go to Solution.
Try this:
Try this:
hi @Anonymous
try to create a calculated table like this:
Table =
SUMMARIZE(
BaseTable,
BaseTable[Code],
BaseTable[Region]
)

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end
https://dropmefiles.com/eahTZ
To create the "Allokup Region" column, you can use the DAX formula "CALCULATE" with "IF" and "MIN" functions. Here's the formula:
Allokup Region = CALCULATE(MIN(Base[Region]), FILTER(Base, Base[Code]=DistinctCodes[Code] && NOT(ISBLANK(Base[Region]))))
Assuming your base table is named "Base" and your distinct code table is named "DistinctCodes", you can use this formula in a new calculated column. The formula finds the minimum non-blank value of the "Region" column for each code.
This code is not working as expected plz find below images. 131 code should have value but in lookup table I still see blank.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.