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
Raks
Helper III
Helper III

Non blank value in column

Hi Team,

I have base table as below 

CodeRegionSales
123 10
123ABC20
456 30
456DEF40

 

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.

CodeRegion
123ABC
456DEF

 

Thanks in advance !

1 ACCEPTED SOLUTION
rusgesig
Helper IV
Helper IV

Try this:

Region Table =
DISTINCT(
    SELECTCOLUMNS(
        FILTER('Table','Table'[Region]<>BLANK())
        ,"Code", 'Table'[Code]
        ,"Region", 'Table'[Region]
    ))
rusgesig_0-1675162021330.png

 



View solution in original post

8 REPLIES 8
rusgesig
Helper IV
Helper IV

Try this:

Region Table =
DISTINCT(
    SELECTCOLUMNS(
        FILTER('Table','Table'[Region]<>BLANK())
        ,"Code", 'Table'[Code]
        ,"Region", 'Table'[Region]
    ))
rusgesig_0-1675162021330.png

 



FreemanZ
Super User
Super User

hi @Raks 

try to create a calculated table like this:

Table =
SUMMARIZE(
    BaseTable,
    BaseTable[Code],
    BaseTable[Region]
)

@FreemanZ ,

Thanks for your rply !

This is not working as expected attaching the image.

Raks_0-1675161001408.png

 

Thanks !

 

 

Ahmedx
Super User
Super User

Screen Capture #255.png

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end
https://dropmefiles.com/eahTZ

@Ahmedx ,

 

I am not able to download the file can you please share it again.

Thanks!

jaweher899
Super User
Super User

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.

@jaweher899 ,

This code is not working as expected plz find below images. 131 code should have value but in lookup table I still see blank.

 

Raks_0-1675161354828.png

Raks_1-1675161402996.pngRaks_2-1675161422733.png

 

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.

Top Solution Authors