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
RyanStO
New Member

Calculated Column Fill Down

Hello,

 

I am looking to fil down a column based on a Customer Reference column in order to fill null entries with the last non blank entry for that customer which would look like the fixed_status column

 

Sample:

 

Customer-RefDateStatusFixed_Status
A31/12/2015nullNull
A01/01/2016HoldHold
A01/01/2016nullHold
A03/01/2016nullHold
A04/01/2016ActiveActive
A05/01/2016nullActive
A06/01/2016HoldHold
A07/01/2016nullHold
B08/01/2016ActiveActive
B09/01/2016nullActive
B10/01/2016HoldHold
B11/01/2016nullHold

 

From some research i think i need to use lastnonblank with a filter based on the customer ref like:

 

https://community.powerbi.com/t5/Desktop/Filling-Data-Gaps-Conditionally/td-p/148745

 

but this soultion does not completely fit my needs as an example for customer A on the 7th is filled as "Active" rather than "Hold", same for customer B on the 11th filled as "Active" rather than "hold"

 

im not sure if it complicates the situation in that a customer can have more than one entry on a particular date.

 

I am new to DAX

 

Thank you for any help

 

 

1 REPLY 1
mahoneypat
Employee
Employee

You can use this column expression to get your result.  You may need to change "null" to "", if they are actually null values (vs. the word null).

 

 

NewStatus =
VAR vThisDate = 'Status'[Date]
RETURN
    CALCULATE (
        LASTNONBLANKVALUE (
            'Status'[Date],
            MIN ( 'Status'[Status] )
        ),
        ALLEXCEPT (
            'Status',
            'Status'[Customer-Ref]
        ),
        'Status'[Date] <= vThisDate,
        'Status'[Status] <> "null"
    )

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


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